SafeDispatch/Service Configurator/ReadMe.md

10 lines
296 B
Markdown
Raw Normal View History

2024-02-22 16:43:59 +00:00
# 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>