You are not logged in.
Pages: 1
This script relies on a utility called sc.exe and can be found here
REM
REM A trivial script to set ALL the XLayer services startup "automatic"
sc config X-Asset Client start=auto
sc config X-EventCollector start=auto
sc config X-FileTX start=auto
sc config X-HBChecker start=auto
sc config X-Notify start=auto
sc config X-Scheduler start=auto
sc config X-ServiceBroker start=auto
sc config XPressDispatch start=auto
sc config XPressStation start=auto
pause
REM To adapt the script for setting the services "manual", change the "auto" to "demand"
Offline
Or a slight variation where A service that must be manually started.
REM
REM A trivial script to set ALL the XLayer services startup “manual”
sc config X-Asset Client start=demand
sc config X-EventCollector start=demand
sc config X-FileTX start=demand
sc config X-HBChecker start=demand
sc config X-Notify start=demand
sc config X-Scheduler start=demand
sc config X-ServiceBroker start=demand
sc config XPressDispatch start=demand
sc config XPressStation start=demand
pause
Offline
Pages: 1