H
Hakan Örnek
Hi ,
I want to parameter passing to my windows sevice. I call service commands
like this ;
'------------------------------------------------------------
Dim sc As ServiceController
sc = New ServiceController("ProsetLogServices")
sc.MachineName = "."
If sc.Status = ServiceControllerStatus.Stopped Then
sc.Start()
End If
sc.ExecuteCommand(129)
'------------------------------------------------------------
This is working but how can I passing parameters to windows service
function...
Thanks for all help...
I want to parameter passing to my windows sevice. I call service commands
like this ;
'------------------------------------------------------------
Dim sc As ServiceController
sc = New ServiceController("ProsetLogServices")
sc.MachineName = "."
If sc.Status = ServiceControllerStatus.Stopped Then
sc.Start()
End If
sc.ExecuteCommand(129)
'------------------------------------------------------------
This is working but how can I passing parameters to windows service
function...
Thanks for all help...