我在我的机器上运行以下命令,使用调用命令
将数据从一台服务器下载到另一台服务器Enable-PSRemoting -force
Enter-PSSession Server1
invoke-command -computername Server1 -credential:'dom\jack' {c:\temp.ps1 -server serverX -id 4231e429-d238-4e32-a1bb-0ee812cd3124 -download $true}
错误是:失败:访问被拒绝。 (HRESULT异常:0x80070005(E_ACCESSDENIED))
但是当我在我的机器上运行上述命令时
c:\temp.ps1 -server serverX -id 4231e429-d238-4e32-a1bb-0ee812cd3124 -download $true
它按预期工作。
当我远程执行时,我有什么东西丢失了......请帮助我。
感谢
答案 0 :(得分:1)
试试这个好参考文献:
http://www.ravichaganti.com/blog/?p=1108
http://technet.microsoft.com/en-us/magazine/ff700227.aspx
可能与TrustedHosts或身份验证有关 设置客户端。您可以这样设置:WinRM set winrm / config / client @ {TrustedHosts =“*”}
我用
powershell.exe -ExecutionPolicy Unrestricted -WindowStyle Hidden -NoLogo
我使用此代码:
try
{
Invoke-Command -credential $testCred -computer $ServerName -scriptblock {
param([String]$scriptDeploy, [String]$destino) &"$scriptDeploy" 'parametro1' $destino
$ScriptBlockOutput = $Error
} -ArgumentList $RutaRemotaParaScriptDeInstalacion, "$dirRemotoDestino"
"`r`n`r`nOK para script de despliegue"
exit 0;
}
catch
{
"`r`n`r`nError en script de despliegue"
"`r`nError in " + $_.InvocationInfo.ScriptName + " at line: " + $_.InvocationInfo.ScriptLineNumber + ", offset: " + $_.InvocationInfo.OffsetInLine + ".";
exit -1
}
答案 1 :(得分:0)
您需要在远程计算机上启用远程处理。您还需要确保防火墙/防病毒不会阻止远程端口。这些是用于http的端口5985,或用于https的端口5986。
如果同一域上的两台计算机都很容易上班。如果机器在不同的域上,那么它就更复杂了。有一个需要在远程服务器上更改的注册表设置,您需要传递凭据。请阅读more info。当然还有ssl也可以启用,但这是另一个故事。
答案 2 :(得分:0)
您的脚本中有一个错误。
您不应在执行Invoke-Command之前执行Enter-PSSession,因为Invoke-Command本身会设置PSSession。 仅使用此:
Invoke-command -computername Server1 -credential:'dom\jack' {c:\temp.ps1 -server serverX -id 4231e429-d238-4e32-a1bb-0ee812cd3124 -download $true}
...没有Enter-PSSession