Gurus, How to turn this script into a Visual GUI - thoughts? The "mybatch.cmd" in the last line is a working batch file that exists in the remote target system. (set/p comp=enter computer name: ) (set/p user=enter user name: ) (set/p pass=enter password: ) psexec \\%comp% -u %user% -p %pass% mybatch.cmd -- Spin
I would use an HTML Application. Google HTML Application for more information. There is also information on the MSDN site in the scripting area. "Spin" wrote: > Gurus, > > How to turn this script into a Visual GUI - thoughts? The "mybatch.cmd" in > the last line is a working batch file that exists in the remote target > system. > > (set/p comp=enter computer name: ) > (set/p user=enter user name: ) > (set/p pass=enter password: ) > psexec \\%comp% -u %user% -p %pass% mybatch.cmd > -- > Spin > > > > > > >
Thx, TxDot!