Windows Setup Assistant, Windows kurulum sürecini otomatize eden, OOBE (Out-of-Box Experience) ekranlarını atlayan ve gelişmiş yapılandırma seçenekleri sunan etkileşimli bir CLI aracıdır.
Bu aracı kullanmak için USB belleğe veya önceden indirmeye gerek yoktur. Windows kurulum ekranındayken tek satır kod ile çalıştırabilirsiniz.
Windows kurulumunda Bölge Seçimi ekranına (OOBE) geldiğinizde şu tuşlara basın:
Shift + F10
(Bu işlem Komut İstemi'ni açacaktır)
curl -L https://gokhanturk.com/winstall -o skip.cmd && skip.cmdcurl -L https://raw.githubusercontent.com/GokhanTurk/skipwinstallation/refs/heads/main/winstall.cmd -o skip.cmd && skip.cmdScript çalıştırıldığında karşınıza 3 seçenekli bir menü gelir:
unattendedtr.xml dosyasını indirir.
Sysprep /generalize çalıştırarak sistemi donanımdan bağımsız hale getirir.
Klavye ve Bölge ayarlarını Türkiye olarak yapılandırır.
Kurulum sonrası (Post-Install) optimizasyonları uygular.
unattendedeng.xml dosyasını indirir.
Sysprep /generalize çalıştırarak sistemi donanımdan bağımsız hale getirir.
Klavye ve Bölge ayarlarını ABD (US) standartlarına göre yapılandırır.
Tam otomatik kurulum istemiyorsanız, sadece çevrimiçi hesap ekranını geçmek için bu menüyü kullanabilirsiniz:
ms-cxh:localonly:
Yerel hesap oluşturma ekranını tetiklemeyi dener.
BypassNRO:
"İnternetim yok" butonunu aktif eder (Yeniden başladıktan sonra interneti kesmeyi gerektirir).
Net User Method (Tam OOBE Atlama):
CMD üzerinden, sizin sececeginiz isimde yetkili bir yerel kullanıcı oluşturur.
SkipMachineOOBE kayıt defteri ayarını girerek tüm kurulum sihirbazını atlar.
Bilgisayar yeniden başladığında doğrudan Masaüstü açılır.
Windows Setup Assistant is an interactive CLI tool designed to automate Windows installation, skip OOBE (Out-of-Box Experience) screens, and provide advanced configuration options directly from the setup environment.
You don't need to download anything beforehand. You can launch the assistant directly from the Windows Setup screen.
When you reach the Windows Region Selection screen (OOBE), press: Shift + F10 (This opens the Command Prompt)
curl -L https://gokhanturk.com/winstall -o skip.cmd && skip.cmdcurl -L https://raw.githubusercontent.com/GokhanTurk/skipwinstallation/refs/heads/main/winstall.cmd -o skip.cmd && skip.cmdWhen the script is executed, an interactive menu will appear:
Downloads and applies unattendedtr.xml.
Executes Sysprep /generalize to make the image hardware-independent.
Configures Keyboard and Region settings for Türkiye.
Applies post-install optimizations.
[2] English (Clean Setup)
Downloads and applies unattendedeng.xml.
Executes Sysprep /generalize.
Configures all settings for US Standard.
[3] Bypass Online Account Only
If you do not want a full automated setup, use this menu to bypass specific hurdles:
ms-cxh:localonly:
Attempts to force the local account creation screen.
BypassNRO:
Enables the "I don't have internet" button (Requires reboot).
Net User Method (Full OOBE Skip):
Manually creates a local Admin account via CMD.
Injects SkipMachineOOBE registry key to skip the entire setup wizard.
The system reboots directly to the Desktop.
Bu proje, açık kaynak topluluğundaki değerli çalışmaların birleşimiyle oluşturulmuştur:
[TR]
- Memstechtips: Otomatik kurulum dosyaları (
unattended.xml) ve optimizasyon altyapısı, Winhance projesi temel alınarak oluşturulmuştur. - Chris Titus Tech: OOBE ekranında
curlkullanarak dosya indirme vesysprepile kurulumu tetikleme yöntemi (Deployment Workflow), kendisinin geliştirdiği tekniklerden esinlenilmiştir.
[EN]
- Memstechtips: The automated installation files (
unattended.xml) and optimization framework are built upon the Winhance project. - Chris Titus Tech: The deployment workflow using
curlto retrieve files and triggeringsysprepduring OOBE is adapted from his techniques.