Useful Commands/Windows only: Difference between revisions

From Fundamental Ramen
Jump to navigation Jump to search
No edit summary
No edit summary
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
<source lang="bash">
= List ports listening =
 
<syntaxhighlight lang="text">
netstat -an | findstr LISTENING
</syntaxhighlight>
 
= Create a Windows To Go for Mac =
 
<syntaxhighlight lang="text">
diskpart
diskpart
DISKPART> list disk
DISKPART> list disk
Line 17: Line 25:


bcdboot T:\Windows /s S: /f UEFI
bcdboot T:\Windows /s S: /f UEFI
</source>
</syntaxhighlight>
 
== Problems ==
* VirtualBox USB 3.0 is not stable for External Disk
 
= Make powershell output in English =
<syntaxhighlight lang="text">
chcp 437
chcp 65001
</syntaxhighlight>
 
== Shutdown ==
<syntaxhighlight lang="text">
shutdown /s
shutdown /s /t 30
</syntaxhighlight>

Latest revision as of 20:28, 3 April 2025

List ports listening

netstat -an | findstr LISTENING

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