PowerShell输出在远程(invoke-command)和本地命令

时间:2017-12-02 14:37:01

标签: powershell powershell-v2.0 windows-server-2008-r2 windows-server-2012-r2

我已经看过Stack Overflow这个问题而且还没有找到它。到目前为止,我还没有运气搜索互联网。到目前为止我找到的答案并没有解决我在同一个命令从同一服务器的两个不同位置运行时看到的差异。也许我没有使用正确的搜索参数。

我的问题:

PowerShell命令在使用远程invoke-command时显示不同的输出,而不是在本地运行命令。我有几次见过这个。

对于此示例,运行远程调用命令的服务器正在运行带有PS 4版本的Windows Server 2012。

正在测试的服务器正在运行带有PS 2版本的Windows Server 2008 R2。

我使用域管理员登录登录两台服务器。

====
**Notice Version shows 1.0.0.0 when using remote command.

2012 v4:

(我尝试使用管道来格式化表格,但结果相同)

invoke-command -computername mail1.dcloud.cisco.com -scriptblock {Get-host} 

PSComputerName   : mail1.dcloud.cisco.com
RunspaceId       : 6ccceb7b-5fa0-42b7-b78f-22b17116f4d3
Name             : ServerRemoteHost
Version          : 1.0.0.0
InstanceId       : 28263e00-11f9-4d78-98c2-f789659b23c8
UI               : System.Management.Automation.Internal.Host.InternalHostUserInterface
CurrentCulture   : en-US
CurrentUICulture : en-US
PrivateData      : 

===========
** Notice version is 2.0 when run locally on server.

2008 R2 v2

PS C:\> $env:ComputerName
MAIL1

PS C:\> get-host


Name             : ConsoleHost
Version          : 2.0
InstanceId       : d4cf14b5-5925-4fb5-9307-eaf8cbcd11f5
UI               : System.Management.Automation.Internal.Host.InternalHostUserInterface
CurrentCulture   : en-US
CurrentUICulture : en-US
PrivateData      : Microsoft.PowerShell.ConsoleHost+ConsoleColorProxy
IsRunspacePushed : False
Runspace         : System.Management.Automation.Runspaces.LocalRunspace

12/2/17 13:25 EDT - 编辑: 如果我将命令改为enter-pssession,我会得到我认为正确的信息。

PS C:\python> enter-pssession mail1
Get-host


Name             : Windows PowerShell ISE Host
Version          : 4.0
InstanceId       : 7e3f6039-3b63-4c8e-af49-bc748c07ed7e
UI               :System.Management.Automation.Internal.Host.InternalHostUserInterface
CurrentCulture   : en-US
CurrentUICulture : en-US
PrivateData      : Microsoft.PowerShell.Host.ISE.ISEOptions
IsRunspacePushed : True
Runspace         : System.Management.Automation.RemoteRunspace


[mail1]: PS C:\Users\Administrator.DCLOUD\Documents> exit-pssession

仍然没有找到为什么Invoke-Command为命令Get-Host提供不同的输出。

1 个答案:

答案 0 :(得分:1)

Get-Host返回当前主机的详细信息。如果您在PowerShell控制台中,它将返回控制台主机的版本。如果您在远程会话中,则返回远程主机的版本(而不是远程服务器中的PS版本)。

注意:主机版和PowerShell版不相同。

即使ISE是powershell的另一个主机