ฉันได้ลองสร้างไฟล์แบตช์โดยใช้ PsExec เพื่ออัปเดตการตั้งค่ารีจิสตรีบนคอมพิวเตอร์ระยะไกลไม่สำเร็จดังนั้นตอนนี้ฉันพยายามใช้ Powershell ฉันได้รวบรวมสคริปต์ต่อไปนี้โดยใช้ Google และเล่นกับสคริปต์ที่มีอยู่ในฟอรัมต่างๆ
$myWindowsID=[System.Security.Principal.WindowsIdentity]::GetCurrent()
$myWindowsPrincipal=new-object System.Security.Principal.WindowsPrincipal($myWindowsID)
$adminRole=[System.Security.Principal.WindowsBuiltInRole]::Administrator
if ($myWindowsPrincipal.IsInRole($adminRole))
{
$Host.UI.RawUI.WindowTitle = $myInvocation.MyCommand.Definition + "(Elevated)"
$Host.UI.RawUI.BackgroundColor = "Darkred"
clear-host
}
else
{
$newProcess = new-object System.Diagnostics.ProcessStartInfo "PowerShell";
$newProcess.Arguments = $myInvocation.MyCommand.Definition;
$newProcess.Verb = "runas";
[System.Diagnostics.Process]::Start($newProcess);
exit
}
winrm quickconfig
$servers = Get-Content c:\temp\servers.txt
$HostedRegFile = "temp\OfficeDocumentfix.reg"
foreach ($server in $servers)
{
$newfile = "\\$servers\c`$\Downloads\RegistryFiles\"
New-Item -ErrorAction SilentlyContinue -ItemType directory -Path \\$servers\C$\Downloads\RegistryFiles\
Copy-Item $HostedRegFile -Destination $newfile
Invoke-Command -ComputerName $server -ScriptBlock {
Start-Process -filepath "C:\windows\regedit.exe" -argumentlist "/s C:\Downloads\RegistryFiles\test.reg"
Write-Host -NoNewLine "Press any key to continue..."
$null = $Host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown")
$returncode = $?+":"+$lastexitcode;
$codearr = $returncode.split(":");
write-host $codearr[0];
write-host $codearr[1];
#echo Registry_updated_successfully
#:Failed
#echo Registry_update_failed
Write-Host -NoNewLine "Press any key to continue..."
$null = $Host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown")
}
}
ตอนนี้สำหรับปัญหาของฉันเรียกใช้สคริปต์ฉันได้รับข้อผิดพลาดดังต่อไปนี้
WinRM ได้รับการตั้งค่าให้รับคำขอบนเครื่องนี้แล้ว
WinRM ได้รับการตั้งค่าสำหรับการจัดการระยะไกลบนเครื่องนี้แล้ว
รายการคัดลอก: ไม่สามารถหาเส้นทาง 'C: \ OfficeDocumentfix.reg' เนื่องจากไม่มีอยู่
แต่เส้นทางนั้นถูกต้องมีบางอย่างผิดปกติอย่างเห็นได้ชัดกับสคริปต์ที่ฉันใช้นี่คือการผลักดันครั้งที่สองของฉันใน Powershell ดังนั้นความช่วยเหลือใด ๆ จะได้รับการชื่นชม
PsExec
โทร