如何取得電腦上的網路共用清單以及每個共用資料夾的關聯路徑名稱?
答案1
從命令提示字元或 powershell,只需運行
net share
以及所有共享的列表,其中包含名稱、本地路徑(資源)以及有關共享的管理備註
PS C:\Windows\system32> net share
Share name Resource Remark
-------------------------------------------------------------------------------
C$ C:\ Default share
D$ D:\ Default share
F$ F:\ Default share
G$ G:\ Default share
IPC$ Remote IPC
ADMIN$ C:\Windows Remote Admin
isos D:\isos
Source D:\Source
The command completed successfully.
PS C:\Windows\system32>
答案2
對於從 Windows Vista 開始的用戶端作業系統和從 Windows Server 2003 開始的伺服器作業系統,您可以使用wmic
。
wmic share get caption,name,path