Windows
使用 import-Csv 導入 pc 列表並使用 powershell 腳本更改屬性
我正在嘗試編寫一個
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"}