我想用Powershell断开网络驱动器(Y :)。该驱动器号已分配/映射到网络位置。有没有简单的方法可以做到这一点?
我相信“ net use XXX / delete”会做到这一点。
问题是:
C:\Windows>net use
New connections will be remembered.
Status Local Remote Network
-------------------------------------------------------------------------------
OK Y: \\192.168.1.108\d Microsoft Windows Network
The command completed successfully.
为什么当我尝试:
C:\Windows>net use \\192.168.1.108\d /del
我得到:
C:\Windows>net use \\192.168.1.108\d /del
The network connection could not be found.
More help is available by typing NET HELPMSG 2250.
????
/y
以net use $Drive.Name /delete
强制关闭驱动器上所有打开的连接。如果存在打开的连接,net use
则会在无人参与的脚本运行过程中提示您不需要的操作。