0

少し助けが必要です。HKU キーと HKCU キーで値 "SMTP server" と "SMTP use auth" を検索し、値を新しい値に置き換えるスクリプトを作成しようとしています。

これまでのところ、私がやっている方法は

$null = New-PSDrive -Name HKU   -PSProvider Registry -Root Registry::HKEY_USERS
#Enter the string value to search for in the variable below. 
$SearchString = "SMTP Server"
#==================================================================================
# Main Code for HKU:
# Write a message to the user to let them know the script 
# has started. 
Write-Host "Searching: HKU" 
# Search the registery for the string value.  Store 
#Registry Keys in out-file
Get-ChildItem HKU:\ -Recurse -ErrorAction SilentlyContinue |   
    ForEach-Object {   
  if((get-itemproperty -Path $_.PsPath) -match $searchString)  
  {   
   $_.PsPath  
  }   
} | out-File HKU_email.txt
# Write a message to let the user know the script completed. 
Write-Host "Part1 has completed."
# == End of Main Code =======================================
# Run VBS file to modify text files
Start-Sleep -Seconds 2
cscript.exe HKU.vbs
Start-Sleep -Seconds 2
# Run Through the file and set the values below in the registry.
$Dfile = "HKU_Email.txt"
$Fi = Get-Content $dfile
foreach ($data in $Fi) {Set-ItemProperty -Path $data -Name "SMTP Server" -Value [Byte[]](<i>New SMTPSERVER<i>)) -type Binary}
foreach ($data in $Fi) {Set-ItemProperty -Path $data -Name "SMTP Use Auth" -Value "0" -type Dword}
Write-Host "Changes in Registry for HKU Completed"

ファイルを解析して行を変更する VBscript HKU.vbs

Microsoft.PowerShell.Core\Registry::HKEY_USERS\Software\Microsoft\Windows NT\CurrentVersion\Windows Messaging Subsystem\Profiles\User@domain.com\9375CFF0413111d3B88A00104B2A6676\00000001

HKCU:\Software\Microsoft\Windows NT\CurrentVersion\Windows Messaging Subsystem\Profiles\User@domain.com\9375CFF0413111d3B88A00104B2A6676\00000001

私の質問は、PowerShell を使用して VBscript で行っていることを達成する方法はありますか? これを Windows XP から Win7 32/64 ビットまでの約 100 台のマシンで実行する必要があります。

ありがとうございました、

4

2 に答える 2

0

次のようなことを試してください:

$Fi = (Get-Content $dfile) -replace '^.*?::HKEY_USERS\\', 'HKCU:\'
于 2013-09-26T21:53:54.757 に答える