我正在尝试使用以下代码在远程机器上执行 powershell 命令:
string shellUri = "http://schemas.microsoft.com/powershell/Microsoft.PowerShell";
PSCredential remoteCredential = new PSCredential("User", StringToSecureString("password"));
WSManConnectionInfo connectionInfo = new WSManConnectionInfo(
false, "ipaddress", 5985, "/wsman", shellUri, remoteCredential, 1 * 60 * 1000);
Runspace runspace = RunspaceFactory.CreateRunspace(connectionInfo);
runspace.Open();
using (PowerShell ps = PowerShell.Create())
{
ps.Runspace = runspace;
ps.AddCommand("get-process");
Collection<PSObject> res = ps.Invoke();
}
StringToSecureString 方法列表:
private SecureString StringToSecureString(string str)
{
SecureString secureStr = new SecureString();
foreach(char c in str)
{
secureStr.AppendChar(c);
}
return secureStr;
}
我可以成功执行一些命令,如“get-process”或“get-service”。
但是有一些命令(例如“$env:username”)会引发下一个错误:
该术语未被识别为 cmdlet、函数、可运行程序或脚本文件。
但是如果我直接使用 powershell 连接,“$env:username”命令将成功执行:
Enter-PSSession -ComputerName ipaddress -Credential username
还有一些其他命令未连接到我也无法执行的环境变量(CLI 应用程序命令无法使用代码或 powershell 工作)。
我是 powershell 和 WinRM 的新手,不知道出了什么问题。有谁知道原因?