Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要将文件从本地计算机复制到远程计算机,但两者都在不同的域中。我尝试使用 powershell 连接它,但防病毒软件阻止了我的连接。
我无法禁用远程计算机中的防病毒软件。谁能告诉是否有办法在不禁用防病毒软件的情况下做到这一点。
您是否尝试使用 net use 命令:
Net use o: \\Computer\share /user:domainName\remoteuser
或者同样使用 PowerShell
New-PSDrive -Name NDrive -PSProvider filesystem -Root \\Computer\share -Credential (get-credential)
然后您可以复制到新驱动器o:或在 PowerShell 中NDrive:
o:
NDrive: