InstallDotNetCoreService


InstallDotNetCoreService
    [-serviceName] <String>
    [-dllPath] <String>
    [-startupType] <String>
    [-serviceDisplayName] <String>
    [-serviceDescription] <String>

Description

Install a dotnet service (application which has a .dll file being passed to the dotnet runtime).

Example


InstallDotNetCoreService -serviceName "MySvc" -dllPath "/Path/To/Dll.dll" -startupType "Automatic" -serviceDisplayName "My Service" -serviceDescription "Service that does stuff"