我有一个脚本,仅在运行特定服务后才启动进程。
这是一个试图Get-Service
状态的循环。
我找不到如何按时间限制循环。
我被卡住的部分:
#add Start button
$button_start = New-Object System.Windows.Forms.Button
$button_start.Location = New-Object System.Drawing.Size(25,70)
$button_start.Size = New-Object System.Drawing.Size(240,32)
$button_start.TextAlign = "MiddleCenter"
$button_start.font = New-Object System.Drawing.Font("Segoe UI",14,[System.Drawing.FontStyle]::Regular)
$button_start.BackColor = "seashell"
$button_start.Text = "Start"
$button_start.Add_Click({
#add statement
while ((Get-Service -ComputerName $textBox_IP.text -ServiceName wscsvc).Status -ne "Running") {
# Pause before next check
Start-Sleep -Seconds 1
}
#only then..
Start-Process -FilePath "C:\Users\username\Desktop\software.exe" -verb RunAs -ArgumentList $textBox_IP.text
})
$Form_remoteControl.Controls.Add($button_start)
我尝试通过Internet在网络上搜索信息,但没有成功。
答案 0 :(得分:0)
定义时间限制,并检查当前时间是否超过该时间限制。
PYTHONPATH
如果您要在该服务仍未运行时跳过外部程序,则在返回的循环之后添加另一项检查:
meld
答案 1 :(得分:0)
这是一个如何停止服务并等待直到服务停止或超时的示例。 您可以修改以启动服务。
Function StopService ($serv)
{
Write-Host "Config service " $serv " ..."
$service = Get-Service $serv -ErrorAction SilentlyContinue
if ($service)
{
if($service.status -eq "running")
{
write-host "Stop service" $serv
Stop-Service $serv -Force
# Wait until service is stopped (max. 1 minute)
$acttime = 0
$waittime = 100
$maxtime = 60000
$TestService = Get-Service $serv
While($TestService | Where-Object {$_.Status -eq 'Running'})
{
Start-Sleep -m $waittime
$acttime += $waittime
if ($acttime -gt $maxtime)
{
write-host "ERROR: Service" $serv " could not be stopped!" -ForegroundColor Red
return $False
}
}
}
else
{
write-host "Service already stopped!" -ForegroundColor Green
return $True
}
}
else
{
write-host "Service not installed" -ForegroundColor Green
return $True
}
}
答案 2 :(得分:0)
我建议您不要在Windows窗体界面中使用任何轮询While
循环(带有Start-Sleep
cmdlet)。它将使您的界面停顿以进行重要的表单事件,例如单击按钮等。
相反,我会期望通过创建计时器事件来对Windows.Forms Timer class进行预期,并在特定时间段后进行适当的检查和采取措施(例如,根据服务状态来确定新的Start-Process
)。