Forum
Herkese İyi Akşamlar ,
PC de olan servislerimi basit bir start-stop service komutu yapamıyorum . Bunun ile ilgili makale okudum . Ekran görüntüsünde olduğu gibi yazmam gerektiği söylendi ancak aynı uyarıyı almaya devam ediyorum .
Konu hakkında bilgisi olan var mı ?
get-service -Name stisvc | Foreach { start-service $_.name -passthru; start-service $_.DependentServices -passthru}
Alınan Hata ( start-service : Service 'Windows Resim Alma (WIA) (stisvc)' cannot be started due to the following error: stisvc hizmeti '.' bilgisayarında açılamıyor.
At line:1 char:38
+ get-service -Name stisvc | Foreach { start-service $_.name -passthru; start-serv ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : OpenError: (System.ServiceProcess.ServiceController:ServiceController) [Start-Service], ServiceCommandException
+ FullyQualifiedErrorId : CouldNotStartService,Microsoft.PowerShell.Commands.StartServiceCommand
)
Sıradan bir servisi yeniden başlatmak içinse yöntem kolay
Ben fax servisini yeniden başlatmak için kullanıyorum. Bir txt dosyası içerisine aşağıdaki gibi yazıyorum .bat olarak kayıt ediyorum. Görev zamanlayıcı ile istediğim zamanlarda bat dosyasını çalıştırarak start stop yapıyorum.
net stop servis
net start servis
Using the command line
- Open Command Prompt.
- Type one of the following:
- To start a service, type:
net startservice
- To stop a service, type:
net stopservice
- To pause a service, type:
net pauseservice
- To resume a service, type:
net continueservice
- To start a service, type: