您好,登錄后才能下訂單哦!
Powershell一直在學習中,腳本編寫能力有限,全憑自己的邏輯思路去寫。如果有高手請留言指點。
在工作中碰到一個案例:
需要添加一個注冊表項,判斷如果有,顯示存在。如果沒有,添加鍵值。
New-Item -Path C:\tools01 -ItemType directory -Force Get-ItemProperty "HKLM:\Software\Microsoft\Windows\CurrentVersion\Policies\System" > C:\tools01\temp.txt $reg1 = "HKLM:\Software\Microsoft\Windows\CurrentVersion\Policies\System" $text1 = Get-Content -Path C:\tools01\temp.txt $test2 = $text1 -cmatch 'LocalAccountTokenFilterPolicy' $test3 = "LocalAccountTokenFilterPolicy : 1" #echo $test2 if ($test2 -contains $test3){echo 存在LocalAccountTokenFilterPolicy} else {New-ItemProperty $reg1 -Name "LocalAccountTokenFilterPolicy" -Value "1" -PropertyType dword } #Get-ItemProperty "HKLM:\Software\Microsoft\Windows\CurrentVersion\Policies\System" |
思路:檢查注冊表目錄下所有鍵值并導入到文本。判斷文本中是否包含要添加的鍵值,如果有,就顯示存在,沒有就添加。
希望大拿們來噴……
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。