Braincode
11th November 2011, 06:39 PM
� WinNTSetup �
Quote:
http://img148.imageshack.us/img148/4311/winntsetup.png
Fitur2:
Instal Windows 2000/XP/2003/Vista/7/8, untuk x86 & x64.
Bisa digunakan bahkan pada WinPE yang 'minimalis'.
Bisa milih huruf drive buat instalasi baru/clean.
Bisa tetap instal Windows biarpun di nLite/vLite sudah dihapus file instalasi winnt32.exe/setup.exe.
Bisa integrasi driver: Driver2 PNP dan yang Textmode.
Patch uxtheme biar bisa pakai theme2 yang 'unsigned'.
Beberapa tweak.
Belum Disupport:
Windows Embedded Version (termasuk WinFLP)
Untuk Windows 7 keatas, belum support instalasi via USB.
Untuk yang versi 1.5, cuma bisa support untuk Win 2000/XP/2003. Kalau untuk Vista/Win7/Server2008, agan bisa pakai tool di thread ini:
Quote:
http://www.ceriwis.org/showthread.php?t=8404185
Cara di thread situ menjelaskan bgm mengapply image Windows dari file install.wim dan membuat file boot.
Untuk Instalasi Driver:
Untuk driver2 Windows kelas NT6.x akan disimpan dlm driver store, jadi tidak perlu lagi terlalu banyak file2 driver yg diikutkan, cukup satu installer saja.
Untuk Opsi Unattend:
Agan bisa tetap menggunakan file "unattended.xml" untuk instalasi Unattended-nya. Sedangkan untuk WinPE tidak menggunakan setting dlm file "unattended.xml" karena cara itu tdk tidak efektif untuk fase Setup di WinPE..
File Config .INI
Dgn program ini, agan juga bisa save setting GUI-nya menjadi bentuk file (.ini):
Pakai kombinasi Ctrl+S untuk Save setting dlm file .ini.
Pakai kombinasi Ctrl+L untuk Load setting dari file .ini.
Sebuah file "WinNTSetup.ini" akan diload otomatis sewaktu startup dlm folder yang sama dgn program ini.
Selain itu, file tsb juga bisa dipilih via command line berikut:
Code:
WinNTSetup.exe /configfile:"C:\mysettings.ini"
Untuk Opsi Command Line Lainnya:
Spoiler for Command Line:
- /nt6, /nt5 atau /vhd mesti selalu jadi the first parameter.
- Agan bisa pakai -Parameter atau /Parameter, sama saja.
- Path bisa pakai relative-path (untuk WinNTSetup_x??.exe)
- Kalau agan pakai path yg ada spasinya, tambahkan tanda kutip (" ") utk path itu.
- /nt6 atau /nt5 - biar program winntsetup tahu OS yg mana yg mau diinstal (nt6: untuk Vista keatas, nt5 untuk XP/2003).
- /source:((path) - path untuk source instalasinya (utk Windows NT5x path-nya di root CD Windows; sedang untuk Windows NT6x.=file install.wim).
- /syspart:((driveletter:) - huruf drive yg agan maui sbg boot drive.
- /tempdrive:((driveletter:) - huruf drive untuk drive instalasi.
- /unattend:((file) - Path untuk file unattend (winnt.sif atau unattend.xml)
- /drivers:((path) - Path untuk folder driver2 yg agan mau pakai.
- /wimindex:n - Untuk indeks edisi Window NT6x. dlm file "install.wim" yg akan diinstal, mulai dari angka 1 (seperti pada combo box Edition).
- /setupwait - Biar tetap muncul halaman proses instalasi.
- /setup - Untuk mulai proses setup.
- /reboot - Otomatis restart 30 detik setelah setup selesai.
- /forceunsigned - (cuma untuk di instalasi Windows 7) supaya 'unsigned driver' langsung di-accept instalasi.
- /testsigning - Untuk set flag testsigning untuk instalasi clean.
- /disableuac - Untuk matikan User Account Control.
- /Sysletter:{Letter} - Untuk nentuin huruf untuk drive-system instalasi.
- /SaveDriveLetters - Untuk save assignment huruf drive untuk instalasi clean Windows.
- /Uxtheme - Untuk patch file2 .dll yg berhubungan dgn UXTHEME biar agan bisa pakai theme2 selain theme bawaan Windows.
- /nobootsect - Biar BootSector dan MBR tidak perlu diupdate.
- /RunAfter:{command} - Untuk jalankan command sebelum restart-nya.
- /cfg:{inifile} - Untuk load setting dari file .ini.
- /HiveFix:{inffile] - Biar bisa customize setup dgn file .inf khusus.
Untuk Opsi VHD:
- /create
- /VHDFile:{path} - Full path untuk file VHD.
- /VHDSize:{size} - Untuk set ukuran VHD dlm MB atau GB (contoh: 25600MB atau 25GB)
- /VHDType:{type} - Set tipe VHD, bisa: fixed, expandable atau yg fixedfast.
---- Opsional ----
- /VHDLabel:{Label} - Label untuk partisi VHD.
- /VHDAlig:{Alig} - Allignment (32|64|128|256|512|1024|2048) partisi.
- /VHDAllo:{Allo} - Allocation unit (512|1024|2048|4096|8192|16K|32K|64K) partisi.
- /mount - Untuk attach VHD kedlm system.
/VHDFile:{path}
- /unmount - Untuk detach VHD dari dlm system.
/VHDFile:{path}
Contoh:
- Untuk menginstal Windows 7 Ultimate (biasanya nomor indeks edisinya (Wimindex) 5) ke drive C:, dgn menggunakan file "unattend.xml" serta driver2 juga diintegrasikan. Dgn asumsi drive C: sbg huruf drive untuk instalasinya, jalankan "set_7_usb_boot.cmd" sebelum restart nanti, pakai command berikut:
Code:
WinNTSetup2_x86.exe -NT6 -source:G:\sources\install.wim -WimIndex:5 -syspart:C: -tempdrive:C: -unattend:"unattend\Win7x86_Ultimate_en.xml"
-ForceUnsigned -drivers:"D:\driver_Win7x86" -Sysletter:C -RunAfter:"set_7_usb_boot.cmd C:\windows" -setup -reboot
Untuk menginstal Windows XP ke drive D:, dimana boot drive agan adalah C:, dgn pakai unattended [app dir]\unattend\winnt.sif, juga integrasi driver: [app dir]\XP_drivers, setelah instalasi lalu restart. MBR & PBR tidak diganti, pakai command:
Code:
WinNTSetup2_x86.exe -NT5 -source:E:\XPCD -syspart:C: -tempdrive:D: -unattend:"unattend\winnt.sif" -drivers:"XP_drivers" -setup -reboot -nobootsect
- Untuk membuat sebuah file VHD tipe fixed dgn kapasitas 25GB, pakai command:
Code:
WinNTSetup2_x86.exe -VHD -create -VHDFile:"C:\my.vhd" -VHDSize:25GB -VHDType:fixed
- Utuk meng-attach vdisk contohnya di "C:\my.vhd", pakai command:
Code:
WinNTSetup2_x86.exe -VHD -unmount -VHDFile:"C:\my.vhd"
- Untuk men-detach vdisk di "C:\my.vhd", pakai command:
Code:
WinNTSetup2_x86.exe -VHD -mount -VHDFile:"C:\my.vhd"
Untuk Instal Windows Dalam File VHD Dengan WinNTSetup:
Pakai Windows 7 sbg OS host agan & Source-nya: Windows 7 Ultimate, Enterprise or Server 2008 R2
Buat sebuah file VHD yg dipartisi terus assign drive letter-nya (Pakai tombol Ctrl+Shift+V untuk build di fitur DISKPART Windows).
Pilih drive VHD sbg drive instalasi (pastikan drive boot agan adalah active primary partition dlm hardisk agan).
Kalau ada warning dari Antivirus agan, berarti itu false alarm (silakan cek ulang dgn AV agan).
Change Log:
Spoiler for Log:
Update: Versi 2.0.3.32
added more GUI tooltips
fixed FolderBrowse not working in default WinPE 3.x
fixed possible duplicates in boot menu
fixed drive letter assignment cause error message on empty cardreader drives
avoid possible installation on same drive as currently running Windows
avoid possible installation of WinPE
avoid NativeVHDBoot of not supported Windows Editions
added VHDHelper (diskpart wrapper) to create, attach and detach VHD's (reserved for Windows 7 users only)
new commandline options -DisableVHDChecks, -VHDHelper (Hotkey: Ctrl + Shift + V).
know issue:
Under WinPE 3.x diskpart may fail to detach a vdisk (blame Microsoft, not me.)
Update: Versi 2.0.3.37
fixed Tweaks for command promt and system restore.
fixed msvcrt error when running WinNTSetup2_x64.exe under Win 2003/XP x64.
removed Tweak to disable language bar (was not working in some cases)
added Tweak to remove Security warning for newly downloaded files
add VHD button for Windows 7 users
Update: Versi 2.0.4.41
automatic decompression of ntldr/setupldr/bootmgr on NTFS compressed drives
drive selection will not accept read only drives for boot- and installation drive
improved VHD creation and installation*
added option for instant creation of fixed VHD's
added support for FAT16 and exFat boot drives
Update: Versi 2.0.4.71
accept nativeVHD Boot for Embedded editions
fixed wrong reported partition as active primary
suppress boot configuration error on mounted Vmware/imdisk disk
added Option to automatically reboot after setup finished
added Command line switches
http://i1213.photobucket.com/albums/cc477/narcophilia/download.gif
WinNTSetup V.1.5
(http://www.media*fire..com/?az4biou9xyn7at8)
WinNTSetup V.2.1
(http://www.media*fire..com/?c81844zzjrlj89n)
Password Link & RAR:
Spoiler for :
.:narco:.
Life is "Trying things to see if they work"
</div>
Quote:
http://img148.imageshack.us/img148/4311/winntsetup.png
Fitur2:
Instal Windows 2000/XP/2003/Vista/7/8, untuk x86 & x64.
Bisa digunakan bahkan pada WinPE yang 'minimalis'.
Bisa milih huruf drive buat instalasi baru/clean.
Bisa tetap instal Windows biarpun di nLite/vLite sudah dihapus file instalasi winnt32.exe/setup.exe.
Bisa integrasi driver: Driver2 PNP dan yang Textmode.
Patch uxtheme biar bisa pakai theme2 yang 'unsigned'.
Beberapa tweak.
Belum Disupport:
Windows Embedded Version (termasuk WinFLP)
Untuk Windows 7 keatas, belum support instalasi via USB.
Untuk yang versi 1.5, cuma bisa support untuk Win 2000/XP/2003. Kalau untuk Vista/Win7/Server2008, agan bisa pakai tool di thread ini:
Quote:
http://www.ceriwis.org/showthread.php?t=8404185
Cara di thread situ menjelaskan bgm mengapply image Windows dari file install.wim dan membuat file boot.
Untuk Instalasi Driver:
Untuk driver2 Windows kelas NT6.x akan disimpan dlm driver store, jadi tidak perlu lagi terlalu banyak file2 driver yg diikutkan, cukup satu installer saja.
Untuk Opsi Unattend:
Agan bisa tetap menggunakan file "unattended.xml" untuk instalasi Unattended-nya. Sedangkan untuk WinPE tidak menggunakan setting dlm file "unattended.xml" karena cara itu tdk tidak efektif untuk fase Setup di WinPE..
File Config .INI
Dgn program ini, agan juga bisa save setting GUI-nya menjadi bentuk file (.ini):
Pakai kombinasi Ctrl+S untuk Save setting dlm file .ini.
Pakai kombinasi Ctrl+L untuk Load setting dari file .ini.
Sebuah file "WinNTSetup.ini" akan diload otomatis sewaktu startup dlm folder yang sama dgn program ini.
Selain itu, file tsb juga bisa dipilih via command line berikut:
Code:
WinNTSetup.exe /configfile:"C:\mysettings.ini"
Untuk Opsi Command Line Lainnya:
Spoiler for Command Line:
- /nt6, /nt5 atau /vhd mesti selalu jadi the first parameter.
- Agan bisa pakai -Parameter atau /Parameter, sama saja.
- Path bisa pakai relative-path (untuk WinNTSetup_x??.exe)
- Kalau agan pakai path yg ada spasinya, tambahkan tanda kutip (" ") utk path itu.
- /nt6 atau /nt5 - biar program winntsetup tahu OS yg mana yg mau diinstal (nt6: untuk Vista keatas, nt5 untuk XP/2003).
- /source:((path) - path untuk source instalasinya (utk Windows NT5x path-nya di root CD Windows; sedang untuk Windows NT6x.=file install.wim).
- /syspart:((driveletter:) - huruf drive yg agan maui sbg boot drive.
- /tempdrive:((driveletter:) - huruf drive untuk drive instalasi.
- /unattend:((file) - Path untuk file unattend (winnt.sif atau unattend.xml)
- /drivers:((path) - Path untuk folder driver2 yg agan mau pakai.
- /wimindex:n - Untuk indeks edisi Window NT6x. dlm file "install.wim" yg akan diinstal, mulai dari angka 1 (seperti pada combo box Edition).
- /setupwait - Biar tetap muncul halaman proses instalasi.
- /setup - Untuk mulai proses setup.
- /reboot - Otomatis restart 30 detik setelah setup selesai.
- /forceunsigned - (cuma untuk di instalasi Windows 7) supaya 'unsigned driver' langsung di-accept instalasi.
- /testsigning - Untuk set flag testsigning untuk instalasi clean.
- /disableuac - Untuk matikan User Account Control.
- /Sysletter:{Letter} - Untuk nentuin huruf untuk drive-system instalasi.
- /SaveDriveLetters - Untuk save assignment huruf drive untuk instalasi clean Windows.
- /Uxtheme - Untuk patch file2 .dll yg berhubungan dgn UXTHEME biar agan bisa pakai theme2 selain theme bawaan Windows.
- /nobootsect - Biar BootSector dan MBR tidak perlu diupdate.
- /RunAfter:{command} - Untuk jalankan command sebelum restart-nya.
- /cfg:{inifile} - Untuk load setting dari file .ini.
- /HiveFix:{inffile] - Biar bisa customize setup dgn file .inf khusus.
Untuk Opsi VHD:
- /create
- /VHDFile:{path} - Full path untuk file VHD.
- /VHDSize:{size} - Untuk set ukuran VHD dlm MB atau GB (contoh: 25600MB atau 25GB)
- /VHDType:{type} - Set tipe VHD, bisa: fixed, expandable atau yg fixedfast.
---- Opsional ----
- /VHDLabel:{Label} - Label untuk partisi VHD.
- /VHDAlig:{Alig} - Allignment (32|64|128|256|512|1024|2048) partisi.
- /VHDAllo:{Allo} - Allocation unit (512|1024|2048|4096|8192|16K|32K|64K) partisi.
- /mount - Untuk attach VHD kedlm system.
/VHDFile:{path}
- /unmount - Untuk detach VHD dari dlm system.
/VHDFile:{path}
Contoh:
- Untuk menginstal Windows 7 Ultimate (biasanya nomor indeks edisinya (Wimindex) 5) ke drive C:, dgn menggunakan file "unattend.xml" serta driver2 juga diintegrasikan. Dgn asumsi drive C: sbg huruf drive untuk instalasinya, jalankan "set_7_usb_boot.cmd" sebelum restart nanti, pakai command berikut:
Code:
WinNTSetup2_x86.exe -NT6 -source:G:\sources\install.wim -WimIndex:5 -syspart:C: -tempdrive:C: -unattend:"unattend\Win7x86_Ultimate_en.xml"
-ForceUnsigned -drivers:"D:\driver_Win7x86" -Sysletter:C -RunAfter:"set_7_usb_boot.cmd C:\windows" -setup -reboot
Untuk menginstal Windows XP ke drive D:, dimana boot drive agan adalah C:, dgn pakai unattended [app dir]\unattend\winnt.sif, juga integrasi driver: [app dir]\XP_drivers, setelah instalasi lalu restart. MBR & PBR tidak diganti, pakai command:
Code:
WinNTSetup2_x86.exe -NT5 -source:E:\XPCD -syspart:C: -tempdrive:D: -unattend:"unattend\winnt.sif" -drivers:"XP_drivers" -setup -reboot -nobootsect
- Untuk membuat sebuah file VHD tipe fixed dgn kapasitas 25GB, pakai command:
Code:
WinNTSetup2_x86.exe -VHD -create -VHDFile:"C:\my.vhd" -VHDSize:25GB -VHDType:fixed
- Utuk meng-attach vdisk contohnya di "C:\my.vhd", pakai command:
Code:
WinNTSetup2_x86.exe -VHD -unmount -VHDFile:"C:\my.vhd"
- Untuk men-detach vdisk di "C:\my.vhd", pakai command:
Code:
WinNTSetup2_x86.exe -VHD -mount -VHDFile:"C:\my.vhd"
Untuk Instal Windows Dalam File VHD Dengan WinNTSetup:
Pakai Windows 7 sbg OS host agan & Source-nya: Windows 7 Ultimate, Enterprise or Server 2008 R2
Buat sebuah file VHD yg dipartisi terus assign drive letter-nya (Pakai tombol Ctrl+Shift+V untuk build di fitur DISKPART Windows).
Pilih drive VHD sbg drive instalasi (pastikan drive boot agan adalah active primary partition dlm hardisk agan).
Kalau ada warning dari Antivirus agan, berarti itu false alarm (silakan cek ulang dgn AV agan).
Change Log:
Spoiler for Log:
Update: Versi 2.0.3.32
added more GUI tooltips
fixed FolderBrowse not working in default WinPE 3.x
fixed possible duplicates in boot menu
fixed drive letter assignment cause error message on empty cardreader drives
avoid possible installation on same drive as currently running Windows
avoid possible installation of WinPE
avoid NativeVHDBoot of not supported Windows Editions
added VHDHelper (diskpart wrapper) to create, attach and detach VHD's (reserved for Windows 7 users only)
new commandline options -DisableVHDChecks, -VHDHelper (Hotkey: Ctrl + Shift + V).
know issue:
Under WinPE 3.x diskpart may fail to detach a vdisk (blame Microsoft, not me.)
Update: Versi 2.0.3.37
fixed Tweaks for command promt and system restore.
fixed msvcrt error when running WinNTSetup2_x64.exe under Win 2003/XP x64.
removed Tweak to disable language bar (was not working in some cases)
added Tweak to remove Security warning for newly downloaded files
add VHD button for Windows 7 users
Update: Versi 2.0.4.41
automatic decompression of ntldr/setupldr/bootmgr on NTFS compressed drives
drive selection will not accept read only drives for boot- and installation drive
improved VHD creation and installation*
added option for instant creation of fixed VHD's
added support for FAT16 and exFat boot drives
Update: Versi 2.0.4.71
accept nativeVHD Boot for Embedded editions
fixed wrong reported partition as active primary
suppress boot configuration error on mounted Vmware/imdisk disk
added Option to automatically reboot after setup finished
added Command line switches
http://i1213.photobucket.com/albums/cc477/narcophilia/download.gif
WinNTSetup V.1.5
(http://www.media*fire..com/?az4biou9xyn7at8)
WinNTSetup V.2.1
(http://www.media*fire..com/?c81844zzjrlj89n)
Password Link & RAR:
Spoiler for :
.:narco:.
Life is "Trying things to see if they work"
</div>