Windows Powershellによるサービスを作成する方法を紹介
サービスを作成
サンプルソース
(入力)
new-service -name TestService -binaryPathName "C:\WINDOWS\System32\svchost.exe -k netsvcs" -dependson NetLogon -displayName "Test Service" -StartupType Manual -Description "This is a test service."
(出力)