我从 Powershell 中的所有设备断开连接,如下所示:
Invoke-Expression -Command "net use * /delete /y"
而且我需要为特定设备执行此操作,而不是与所有设备断开连接。
问题: 如何测试是否已经与特定网络位置建立了连接,如果存在则断开连接(删除连接)?
我想要实现的一般是这样的:
IF (there is already a connection to a network drive with below details)
"\\poooh.fooo.boo.com\MyFolder" user="FOO\winnie" password="12345678"
THEN
{
Disconnect from this network drive #via NET USE I guess
And CREATE a PS-DRIVE to the same network location
}