3
我正在使用此命令在VMware虛擬機上設置註釋。Set-Annotation的2個輸入
Set-Annotation -entity $vm -CustomAttribute "Owner" -Value "$owner"
我需要腳本在同一個循環中讀取2個輸入文件。一個用於實體名稱的輸入和一個用於該值的輸入。
如果我們做2文本文件,
file 1 =
vm1
vm2
vm3
file 2 =
john
bob
ken
我需要的腳本來完成:
Set-Annotation -entity vm1 -CustomAttribute "Owner" -Value "john"
然後
Set-Annotation -entity vm2 -CustomAttribute "Owner" -Value "bob"
我已經能夠得到不同的循環來運行,但沒有正確的。
歡迎來到SO。請張貼您嘗試過的一些PowerShell循環,並瞭解它們實際產生的內容,以便我們可以提供更有針對性的響應。 – kdopen
閱讀這兩個文件,並使用索引循環來引用每個文件數組中的字符串? – Matt