How to start & stop service using .BAT file
Open the Notepad paste the belowlines
Net stop "W3SVC"
net stop "Microsoft.Dynamics.AX.Framework.Tools.DMF.SSISHelperService.exe"
net stop "DynamicsAxBatch"
net stop "MR2012ProcessService"
pause
Save notepad file as name.BAT it will create service type file type and just double click over there
=====================================================================
To start the services
Net start "W3SVC"
net start "Microsoft.Dynamics.AX.Framework.Tools.DMF.SSISHelperService.exe"
net start "DynamicsAxBatch"
net start "MR2012ProcessService"
pause
==================================================================
Comments
Post a Comment