Script to Open Real-Time System Manager

Script to Open Real-Time System Manager

In connection with Joel's article on Improving Load Performance in Real-Time Systems Manager, the following VBscript provides a shortcut to opening an RTSM page for a system.

REM Use to connect to Altiris system using RTSM

strAnswer = InputBox("Please enter the computer name of the system you wish to manage:","RTSM Quick View")

If strAnswer = "" Then
Wscript.Quit
Else
StrUrl = "http://localhost/Altiris/Resource/ResourceManagerConsole.aspx?Name="&strAnswer
Set objShell = CreateObject("Wscript.Shell")
objShell.Run(strUrl)
End If

For the sample script above, replace localhost with the appropriate Altiris NS server name or address. If LocalHost is used, this assumes the utility is being executed on the local system.

Two example screenshots below provide a summary of what the script accomplishes. Upon execution of the VBscript, the following input box appears and the user enters in the system name as desired:

After clicking the OK button, the script accesses the URL defined with the computer name entered. The image below shows the results of that action, followed by clicking on the Real-Time tab.

The opinions expressed on this site are mine alone and do not necessarily reflect the opinions or strategies of Intel Corporation or its worldwide subsidiaries.

3.766665
Average: 3.8 (30 votes)

Cute script!!

Jeff Smith

Syndicate content