当我在 Powershell 中运行这段代码时:
net use \\$computerName\c$\ $adminPW /user:$adminUN /Persistent:No
我得到:
System error 53 has occurred.
The network path was not found.
但是,如果我运行:
net use \\$computerName\c$\subfolder $adminPW /user:$adminUN /Persistent:No
假设存在,它会成功执行subfolder
。为什么会发生这种情况?我正在运行此代码以便最终在其中创建一个文件夹c$
,也许还有其他方法?