Const UM_MIRROR_EXE = "%ProgramFiles%\UltraMon\UMMirrorClient.exe"

Set sh = CreateObject("WScript.Shell")

If sh.Run("""" & UM_MIRROR_EXE & """ /start",, True) = 2 Then
	'mirroring already running, stop it
	sh.Run("""" & UM_MIRROR_EXE & """ /stop")
End If