有沒有辦法讓腳本跳轉到特定位置,例如:命令提示符中的GOTO?我想在腳本結束時跳轉到開頭。跳轉到腳本中的某些位置
$tag1 = Read-Host 'Enter tag #'
cls
sc.exe \\$tag1 start RemoteRegistry
cls
Start-Sleep -s 2
cls
systeminfo /S $tag1 | findstr /B /C:"OS Name" /C:"System Boot Time" /C:"System Up Time";
Get-EventLog system -computername $tag1 -InstanceId 2147489657 -Newest 10 | ft EventID,TimeWritten,MachineName -AutoSize
Pause
轉到是邪惡的,請改用其他邏輯結構。這聽起來像你正在尋找一個循環。 – SBI
任何示例?我不是那個親。 – Aaron