Useful Commands/Windows only: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
| Line 28: | Line 28: | ||
chcp 437 | chcp 437 | ||
chcp 65001 | chcp 65001 | ||
</source> | |||
== Shutdown == | |||
<source lang="text"> | |||
shutdown /s | |||
shutdown /s /t 30 | |||
</source> | </source> | ||
Revision as of 06:02, 28 May 2020
Create a Windows To Go for Mac
diskpart
DISKPART> list disk
DISKPART> select disk 0
DISKPART> convert gpt
DISKPART> create partition efi size=300
DISKPART> format quick fs=fat32
DISKPART> assign letter=s
DISKPART> create partition primary size=184320
DISKPART> format quick fs=ntfs
DISKPART> assign letter=t
DISKPART> create partition primary
DISKPART> format quick fs=ntfs
DISKPART> exit
dism /apply-image /imagefile:D:\sources\install.wim /index:1 /applydir:T:\
bcdboot T:\Windows /s S: /f UEFI
Problems
- VirtualBox USB 3.0 is not stable for External Disk
Make powershell output in English
chcp 437
chcp 65001
Shutdown
shutdown /s
shutdown /s /t 30