Created
October 7, 2015 03:53
-
-
Save techthoughts2/1ed48505bc00702d79b8 to your computer and use it in GitHub Desktop.
Volume GUID resolution
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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