Roger Zander's SMS Client Spy - RCrumbaker's Web Remote Tools
There is most likely a much more elegent way to do this; but here's a way to get Roger Zander's (http://sourceforge.net/projects/smsclictr) SMS Client Spy to launch from a button on Ron's page:
First, you'll need to install the application on a test box (you can uninstall when done). Then copy the 3 files (SMSCliCtr.exe, Eyefinder.dll, and SMSCliCtr.exe.config) to <your server>\remote$ When I was testing, I found I couldn't launch the app directly from remote$, this may be something unique to my environment, but I've scripted it to copy the 3 files to the local user's temp folder, and then launch it from there.
Edit MachRest.asp, and add a button by your other buttons (about line 80-ish):
<INPUT id="Button726" style='WIDTH: 180px' type='button' value='SMS Client Center' name='Btnl726'>
Then add the below (the Sub) probably near the bottom, just before the </script>, after all of the other Sub/end Sub routines
Sub Btnl726_OnClick
on error resume next
dim CompName,oWshShell
Set fso = createobject("scripting.filesystemobject")
CompName = trim(document.frmMain.txtValue.value)
Set WShell = CreateObject("WScript.Shell")
DotNetpath = "%SystemRoot%\Microsoft.NET\Framework\v2.0.50727"
DotNetpath = Wshell.ExpandEnvironmentStrings(dotnetpath)
strTemp = wshell.ExpandEnvironmentStrings("%temp%")
if fso.folderExists(dotNetPath) then
fso.copyfile "\\" & ServerName & "\remote$\SMSCliCtr.exe",strTemp & "\"
fso.copyfile "\\" & ServerName & "\remote$\Eyefinder.dll",strTemp & "\"
fso.copyfile "\\" & ServerName & "\remote$\SMSCliCtr.exe.config",strTemp & "\"
ipath = strtemp & "\SMSCliCtr.exe "
if fso.fileExists(trim(ipath)) then
WShell.run ipath & compname,1,false
else
msgbox "The SMS Client Center application was not found!",,"Application Missing"
end if 'End if on file exists
else
msgbox "In order to run this utility, you need .Net 2.0 installed, sorry.",,".Net 2.0 Pre requisite"
end if 'end if on needing .net 2.0
End Sub