Bodhis3mta3
Programmer
This is probably the most insecure request one IT professional could make of another, and if it works, maybe I should batten down my hatches a little tighter...
I have a sysinfo app that has a server side that runs on machines, and you connect remotely to that server-side app to run reports. I can run this server side app remotely from my own shared docs (thus eliminating the need to INSTALL it everywhere) and with a few switches, completely under the radar.
I've tried this:
Set WshShell = WScript.CreateObject("WScript.Shell")
RunApp = WshShell.Run ("""\\mybox\Documents\System Info\sysinfo.exe"" /hidden /silent" , , True)
set wshshell=nothing
But it starts the process on my own machine.
I'd like to know how to script either a remote "call" to this app from thier shared docs or schedule it to be called on the remote machine at whenever. I can't dump a VB script in the start up folder of every machine, cuz then I'd have to go around allaying fears when thier AV goes haywire. I can't ask these people to run this themselves cuz a) most couldn't navigate to my shared docs anyway and b) most are suspicious of IT initiatives after a harrowing computer monitoring fiasco among management. I'd rather just do this as auto as I can.
I realize that this is a super-huge potential security risk, but if I have to do it manually, I'd rather skip it altogether.
Thanks for all the help in advance.
the bodhisattva
I have a sysinfo app that has a server side that runs on machines, and you connect remotely to that server-side app to run reports. I can run this server side app remotely from my own shared docs (thus eliminating the need to INSTALL it everywhere) and with a few switches, completely under the radar.
I've tried this:
Set WshShell = WScript.CreateObject("WScript.Shell")
RunApp = WshShell.Run ("""\\mybox\Documents\System Info\sysinfo.exe"" /hidden /silent" , , True)
set wshshell=nothing
But it starts the process on my own machine.
I'd like to know how to script either a remote "call" to this app from thier shared docs or schedule it to be called on the remote machine at whenever. I can't dump a VB script in the start up folder of every machine, cuz then I'd have to go around allaying fears when thier AV goes haywire. I can't ask these people to run this themselves cuz a) most couldn't navigate to my shared docs anyway and b) most are suspicious of IT initiatives after a harrowing computer monitoring fiasco among management. I'd rather just do this as auto as I can.
I realize that this is a super-huge potential security risk, but if I have to do it manually, I'd rather skip it altogether.
Thanks for all the help in advance.
the bodhisattva