Skip to content

Instantly share code, notes, and snippets.

@techthoughts2
Created October 7, 2015 03:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save techthoughts2/1ed48505bc00702d79b8 to your computer and use it in GitHub Desktop.
Save techthoughts2/1ed48505bc00702d79b8 to your computer and use it in GitHub Desktop.
Volume GUID resolution
Get-WmiObject -class Win32_Volume -computername localhost | where-object {$_.name -like "\\?\*"} | select-object Label,DriveLetter,DeviceID,SystemVolume,name,Capacity,Freespace | format-list
#also
mountvol.exe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment