如何在包括计算机名输出(How do I include computername in outpu

2019-10-18 14:52发布

PS newbe这里...

如何获取远程计算机的名称出现在输出?

$computer = "PC3090-121","APCD02" 
Get-WmiObject Win32_Printer -ComputerName $computer |
  Select-Object SystemName,Name,Local |
  Format-Table -AutoSize

我试过,包括-computername,计算机名,%计算机%在选择和格式表 - 属性 - 没有喜悦...

我的搜索想出空,或者我无法理解他们。

------------------------------答案:

$computer = "PC3090-121","APCD02" 
Get-WmiObject Win32_Printer -ComputerName $computer |
  Select-Object  __Server, Name, Local |
  Format-Table -AutoSize

Answer 1:

如何简单地

Get-WmiObject Win32_Printer -ComputerName $computer |
  Select-Object SystemName,Name,Local |
  Format-Table -AutoSize

没有computername生成的对象上属性,也不存在%computername%属性。 存在什么是SystemName



文章来源: How do I include computername in output