Windows

使用 import-Csv 導入 pc 列表並使用 powershell 腳本更改屬性

  • March 16, 2017

我正在嘗試編寫一個powershell腳本來更改使用andcomment的 pc 列表中名為 "" 的 屬性。 csv``import-Csv

在此處輸入圖像描述

這是我的腳本

$computers=Import-Csv -Path "C:\sds.csv" 
foreach ($item in $computers){ 
Set-ADComputer -identity $computers.DistinguishedName -add @{comment="bara"}
}

並聽到我的csv文件位於"C:\sds.csv"

在此處輸入圖像描述

但它跳到這個..

在此處輸入圖像描述

嘗試Google搜尋和更改這里和那裡,但不起作用!我對power-shell腳本了解甚少,但希望學習。有人可以指導我,我在搞砸什麼嗎?

在您的for中,您必須處理目前項目而不是computers集合。computers因此,您必須通過以下方式更改命令item

Set-ADComputer -identity $item.DistinguishedName -add @{comment="bara"}

引用自:https://serverfault.com/questions/838596