SafeDispatch/Service Configurator/ReadMe.md
2024-02-22 18:43:59 +02:00

296 B

Install / Uninstall a windows service

sc <ServerName> create <ServiceName> start= {boot | system | auto | demand | disabled} binPath= <BinaryPathName> DisplayName= <DisplayName>

sc delete <ServiceName>

Start / Stop a windows service

net start <service name>
net stop <service name>