我经常访问Powershell中的共享网络文件夹以获取文件等.但如果共享需要用户名/密码,那么与Windows资源管理器不同,Powershell不会提示我这些.如果我首先在Windows资源管理器中连接到该文件夹,Powershell将允许我连接.
我怎样才能在Powershell中验证自己?
乍一看,人们真的想用New-PSDrive
它来提供凭据.
> New-PSDrive -Name P -PSProvider FileSystem -Root \\server\share -Credential domain\user
New-PSDrive : Cannot retrieve the dynamic parameters for the cmdlet. Dynamic parameters for NewDrive cannot be retrieved for the 'FileSystem' provider. The provider does not support the use of credentials. Please perform the operation again without specifying credentials.
文档说明您可以提供PSCredential
对象,但如果您仔细观察,cmdlet还不支持此对象.也许在下一个版本我想.
因此你可以使用net use
或者WScript.Network
对象,调用MapNetworkDrive
函数:
$net = new-object -ComObject WScript.Network $net.MapNetworkDrive("u:", "\\server\share", $false, "domain\user", "password")
显然,对于较新版本的PowerShell,New-PSDrive
cmdlet可以使用凭据映射网络共享!
New-PSDrive -Name P -PSProvider FileSystem -Root \\Server01\Public -Credential user\domain -Persist
这不是PowerShell特定的答案,但您可以先使用"NET USE"对共享进行身份验证:
net use \\server\share /user:
然后在PowerShell中做任何你需要做的事......
PowerShell 3现在支持开箱即用.
如果您遇到PowerShell 2,则基本上必须使用legacy net use
命令(如前所述).