web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :

Start Windows Service from NAV

RockwithNav Profile Picture RockwithNav 8,600 Super User 2025 Season 2

 

ServiceController := ServiceController.ServiceController;

ServiceController.ServiceName(‘Service Name’);

ServiceController.DisplayName(‘Display Name’);

ServiceController.MachineName(‘Machine Name’);

ServiceController.Start;

ServiceController.WaitForStatus(ServiceController.Status.Running);

ServiceController.Refresh;

MESSAGE(TEXT001);

 

TEXT001 – Service Started

ServiceController –   DOTNET   – 

System.ServiceProcess.ServiceController.’System.ServiceProcess,  Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a’

 



This was originally posted here.

Comments

*This post is locked for comments