powershell 使用凭证将项目复制到UNC路径

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 使用凭证将项目复制到UNC路径相关的知识,希望对你有一定的参考价值。

$user = "username"
$pass = ConvertTo-SecureString "password" -AsPlainText -Force
$cred = New-Object -TypeName PSCredential -ArgumentList $user, $pass

$uncPath = "\\server\share"
New-PSDrive -Name "x" -PSProvider FileSystem -Root $uncPath -Credential $cred

Copy-Item -Path "C:\file.csv" -Destination "x:\file.csv"

以上是关于powershell 使用凭证将项目复制到UNC路径的主要内容,如果未能解决你的问题,请参考以下文章

我可以创建从网络上的UNC路径复制文件的安装程序吗?

从FTP服务器获取文件并将其复制到UNC目录

无法访问 Powershell 远程会话中的 UNC 路径

如何使用 PowerShell 可靠地将项目复制到 mtp 设备?

使用 PowerShell 和 UNC 路径进行 NMAKE clean

如果通过计划任务调用 BAT 文件,则无法将文件复制到 UNC 目标