top of page
Yazarın fotoğrafıS.Ergül

Get Start Windows Service on Powershell

Merhabalar,

ilgili scriptimizi kullanarak, mevcut client üzerinde ilgili belli servislerin kontrol edilmesi ve yeniden çalıştırılmasını sağlayabilirsiniz.


Write-Host " >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>"
Write-Host " >>> Windows Servis Kontrol Mekanizması <<<"
Write-Host " 1 >> Windows Update Servisi - wuauserv "
Write-Host " 2 >> Printer Servisi - spooler "
Write-Host " >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>"
$select = Read-Host -Prompt "Kontrol edilmesi istediğiniz Servisi Seçiniz:"

if($select = 1)
{
    $selection = "wuauserv"
    $servis = Get-Service -Name $selection | Select-Object -Property *
}

if($select = 2)
{
    $selection = "spooler"
    $servis = Get-Service -Name $selection | Select-Object -Property *
}

if ($servis.StartType -ne "Automatic") 
{
    Set-Service -Name $selection -StartupType Automatic
}

if ($servis.Status -eq "Stopped")
{
    Start-Service -Name $selection
    Get-Service -Name $selection
    Write-Host "ilgili servis" + $selection + "çalıştırılmıştır."
}
else
{
    Write-Host "====Servis Çalışıyor===="
}


7 görüntüleme0 yorum

Son Yazılar

Hepsini Gör

Comentários


Post: Blog2_Post
bottom of page