Skip to content

Instantly share code, notes, and snippets.

@divinity76
Created December 17, 2020 16:35
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 divinity76/43acff81b803b4b017f6c1492550d13f to your computer and use it in GitHub Desktop.
Save divinity76/43acff81b803b4b017f6c1492550d13f to your computer and use it in GitHub Desktop.
idrac autoit stuff
;$msg="{CTRLDOWN}r{CTRLUP}"; <<< idrac6: raid controller settings
;$msg="{F10}"; s
;$msg="{F11}";
;$msg="{F6}";
;$msg="{CTRLDOWN}e{CTRLUP}";
If( MsgBox(1,"press OK to start","press to start: "&$msg) == 2) Then
Exit(137);
EndIf
Sleep(2000);
While 1
Send($msg);
Sleep(1000);
WEnd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment