Sunday, 18 August 2013

Starting AX services in batch file

Just a small post regarding the starting of the AX services. I have installed AX2009 and AX2012 locally on my laptop for testing purposes. The services however take a lot of time to start up and you don't want this to be part of the bootingsequence of the laptop. So I created a bat file containing only the following lines:

@echo off

echo Starting time: %time%

net start "MSSQLSERVER"

net start "AOS50$01"

net start "AOS60$01"

echo Time finished: %time%

pause




This way you can start the services at the time you want without having to do it manually via the services. So it's a very simple and easy thing to do, but it's helpful :).

No comments:

Post a Comment