Site Tools


windows:windowsserver:scom:operationsconsole

This is an old revision of the document!


Operations Manager Console

We have a small client which boots and automatically opens the SCOM Console to display the alerts on a big TV screen.

How to open up the Console

How to login with different user credentials

To manage this, I wrote a litte AutoIT script which logs in automatically, as soon as the credential window pops up. Why AutoIT? Well, if you want that PW, you need to decompile the .exe You can also add to the code to close the script as soon as someone moves the mouse or click anything. This way you cant paste it into a notepad or anything…

while 1
Sleep(5000)
$Title = "x"
$Title = WinGetTitle("")
$Checktitle_de = "Anmeldeinformationen eingeben"
$Checktitle_en = "Enter Credentials"

If $Title = $Checktitle_de OR $Title = $Checktitle_en Then
Sleep(500)
Send("INSERT YOUR SERVICEACCOUNT")
Sleep(200)
Send("{TAB}")
Sleep(200)
Send("INSERT YOUR PW")
Sleep(200)
Send("{TAB}")
Sleep(200)
Send("INSERT YOUR DOMAIN")
Sleep(200)
Send("{ENTER}")
Exit 0
Else

EndIf

WEnd

windows/windowsserver/scom/operationsconsole.1454688330.txt.gz · Last modified: 2017/03/01 12:50 (external edit)