Skip to content

Instantly share code, notes, and snippets.

@ziadoz
Created July 4, 2021 21:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ziadoz/5f7b688c66ca27aed2cb425ea8e98965 to your computer and use it in GitHub Desktop.
Save ziadoz/5f7b688c66ca27aed2cb425ea8e98965 to your computer and use it in GitHub Desktop.
Toggle ASUS Armoury Crate Service
SET /P state=Start (1) or Stop (0) Armoury Crate?
@ECHO OFF
IF %state% == 1 (ECHO "Starting Armoury Crate..." & NET START ArmouryCrateControlInterface & NET START ArmouryCrateService) ELSE (ECHO "Stopping Armoury Crate..." & NET STOP ArmouryCrateControlInterface & NET STOP ArmouryCrateService)
ECHO "Done."
PAUSE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment