PS C:\> Get-WmiObject win32_share Name Path Description ---- ---- ----------- ADMIN$ C:\Windows Remote Admin C$ C:\ Default share CCMLogs$ C:\Windows\system32\ccm\logs CCMSetup$ C:\Windows\system32\ccmsetup IPC$ Remote IPC music C:\music none VPCache$ C:\Windows\system32\VPCache WMILogs$ C:\Windows\system32\wbem\logs PS C:\> Get-WmiObject win32_share -Filter "type = '0'" Name Path Description ---- ---- ----------- CCMLogs$ C:\Windows\system32\ccm\logs CCMSetup$ C:\Windows\system32\ccmsetup music C:\music none VPCache$ C:\Windows\system32\VPCache WMILogs$ C:\Windows\system32\wbem\logs PS C:\> Get-WmiObject win32_share -Filter "type = '0' AND description = ''" Name Path Description ---- ---- ----------- CCMLogs$ C:\Windows\system32\ccm\logs CCMSetup$ C:\Windows\system32\ccmsetup VPCache$ C:\Windows\system32\VPCache WMILogs$ C:\Windows\system32\wbem\logs