如何检索计算机的主要用户列表

时间:2016-12-15 23:08:11

标签: list powershell wmi sccm import-csv

如何将CSV文件的对象传输到Get-CMUserDeviceAffinity的DeviceName参数?

我有一个计算机列表。我想为此列表中的每台计算机生成一个主要用户列表。我正在使用PowerShell和SCCM模块,到目前为止,我已经尝试了一个单行程以及更加罗嗦的东西,但无济于事。

One-Liner失败

Import-CSV C:\temp\computerlist.csv |  Get-CMUserDeviceAffinity -DeviceName $($_.Name)

脚本失败:

$Computers = C:\computers.CSV
   ForEach ($Computer in $Computers) {
       Get-CMUserDeviceAffinity -DeviceName $_.Name

两者的结果都失败了:

Cannot validate argument on parameter 'DeviceName'. The argument is null or empty. Provide
an argument that is not null or empty, and then try the command again.
At line:1 char:77
+ ... p\computerlist.csv |  Get-CMUserDeviceAffinity -DeviceName $($_.Name)
+                                                                ~~~~~~~~~~
    + CategoryInfo          : InvalidData: (:) [Get-CMUserDeviceAffinity], ParameterBindingValidationException
    + FullyQualifiedErrorId : ParameterArgumentValidationError,Microsoft.ConfigurationManagement.Cmdlets.Collections.C
   ommands.GetUserDeviceAffinityCommand

2 个答案:

答案 0 :(得分:5)

您正在使用自动管道变量$_,而您的foreach循环中没有管道对象。只需使用$Computer代替:

$Computers = C:\computers.CSV
   ForEach ($Computer in $Computers) {
       Get-CMUserDeviceAffinity -DeviceName $Computer.Name
}

答案 1 :(得分:0)

假设你的csv是这样的 enter image description here

您可以尝试使用以下PowerShell脚本:

$Computers = Import-Csv C:\computerlist.CSV
   ForEach ($Computer in $Computers) {
      $Name = (Get-CMUserDeviceAffinity -DeviceName $Computer.Name).uniqueusername
      write-host "$($computer.name) ------> $($Name) "
}

输出:
enter image description here