OBSOLETE
This API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module.
ServiceControllerHelpers
Contains tasks which allow to control NT services.
Functions and values
Function or value | Description |
checkRemoteServiceExists host name
Signature: host:string -> name:string -> bool
Attributes: [<Obsolete("This API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module.")>] |
OBSOLETEThis API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module. Returns whether a remote service with the given name exists. Parameters
|
checkServiceExists(name)
Signature: name:string -> bool
Attributes: [<Obsolete("This API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module.")>] |
OBSOLETEThis API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module. Returns whether a local service with the given name exists. Parameters
|
ensureRemoteServiceHasStarted(...)
Signature: host:string -> name:string -> timeout:TimeSpan -> unit
Attributes: [<Obsolete("This API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module.")>] |
OBSOLETEThis API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module. Waits until the remote service with the given name has been started or fails after given timeout Parameters
|
ensureRemoteServiceHasStopped(...)
Signature: host:string -> name:string -> timeout:TimeSpan -> unit
Attributes: [<Obsolete("This API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module.")>] |
OBSOLETEThis API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module. Waits until the remote service with the given name has been stopped or fails after given timeout Parameters
|
ensureServiceHasStarted name timeout
Signature: name:string -> timeout:TimeSpan -> unit
Attributes: [<Obsolete("This API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module.")>] |
OBSOLETEThis API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module. Waits until the local service with the given name has been started or fails after given timeout Parameters
|
ensureServiceHasStopped name timeout
Signature: name:string -> timeout:TimeSpan -> unit
Attributes: [<Obsolete("This API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module.")>] |
OBSOLETEThis API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module. Waits until the local service with the given name has been stopped or fails after given timeout Parameters
|
startRemoteService host name
Signature: host:string -> name:string -> unit
Attributes: [<Obsolete("This API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module.")>] |
OBSOLETEThis API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module. Starts all remote services with given name. Parameters
|
startService(name)
Signature: name:string -> unit
Attributes: [<Obsolete("This API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module.")>] |
OBSOLETEThis API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module. Starts all local services with given name. Parameters
|
stopRemoteService host name
Signature: host:string -> name:string -> unit
Attributes: [<Obsolete("This API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module.")>] |
OBSOLETEThis API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module. Stops all services with given name. Parameters
|
stopService(name)
Signature: name:string -> unit
Attributes: [<Obsolete("This API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module.")>] |
OBSOLETEThis API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module. Stops all local services with given name. Parameters
|