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
、無人スクリプトの実行中に不要なアクションを要求します。