Fix ManageEngine not starting

Notification Server fails to be configured for Local Service and the auto start settings where lost too. Fixed now.
This commit is contained in:
Tijl Deneut 2017-08-03 15:15:40 +02:00 committed by GitHub
parent 5e99d564cb
commit fbbb3e4718
1 changed files with 3 additions and 3 deletions

View File

@ -4,9 +4,9 @@ net stop "ManageEngine Desktop Central Server"
net stop "MEDC Server Component - Apache"
net stop "MEDC Server Component - Notification Server"
icacls "C:\ManageEngine" /grant "NT Authority\LOCAL SERVICE:(OI)(CI)F" /T
sc config "DesktopCentralServer" obj= "NT Authority\LOCAL SERVICE"
sc config "MEDC Server Component - Notification Server" obj= "NT Authority\LOCAL SERVICE"
sc config "MEDCServerComponent-Apache" obj= "NT Authority\LOCAL SERVICE"
sc config "DesktopCentralServer" obj= "NT Authority\LOCAL SERVICE" type= own start= auto
sc config "MEDC Server Component - Notification Server" obj= "NT Authority\LOCAL SERVICE" type= own start= auto
sc config "MEDCServerComponent-Apache" obj= "NT Authority\LOCAL SERVICE" type= own start= auto
net start "MEDC Server Component - Apache"
net start "MEDC Server Component - Notification Server"
net start "ManageEngine Desktop Central Server"