ISE中的命令与PowerShell中的命令不同

时间:2019-03-13 17:44:51

标签: powershell

真的很奇怪,从标准PowerShell提示符中运行以下命令

Get-ComputerInfo

返回大量属性

WindowsBuildLabEx                                       : 14393.447.amd64fre.rs1_release_inmarket.161102-0100
WindowsCurrentVersion                                   : 6.3
WindowsEditionId                                        : ServerStandard
WindowsInstallationType                                 : Server
WindowsInstallDateFromRegistry                          : 05/02/2019 14:13:23
WindowsProductId                                        : 00377-70126-52438-AA588
WindowsProductName                                      : Windows Server 2016 Standard
WindowsRegisteredOrganization                           :
WindowsRegisteredOwner                                  : Windows User
WindowsSystemRoot                                       : C:\Windows
BiosCharacteristics                                     : {3, 9, 15, 16...}
BiosBIOSVersion                                         : {VRTUAL - 1, Hyper-V UEFI Release v1.0, EDK II - 10000}

And so on.....

但是在ISE中运行相同的命令,它会返回不同的变量集;

ComputerName       : DEV
OSName             : Microsoft Windows Server 2016 Standard
OSVersion          : 10.0.14393
MemoryGB           : 4
NumberOfProcessors : 1
NumberOfSockets    : 1
NumberOfCores      : 8
  • Windows Server 2016 Standard
  • PowerShell版本5.1.14393.206

我是否需要将任何模块加载到ISE中?

1 个答案:

答案 0 :(得分:0)

结果表明,ISE中有两个命令可用。 Get-ComputerInfo和Get-ComputerInfo

enter image description here

当您插入ISE时,会插入

  

Get-ComputerInfo

是我打过的那个,另一个是

  

Microsoft.PowerShell.Management \ Get-ComputerInfo

这是我想要的。我的脚本现在可以在ISE和控制台中使用