Please help me. I'm trying to write a script that calls several external windows to pop-up and I'd like to be able to differentiate them by giving the title bars specific names. The command I'm trying to run creates the correct name in the title bar but doesn't execute the command. My code is as follows:
#$IPSCHEME is a predefined variable
#containing an IP Address string
#
#$CID is a predefined variable
#containing a Center ID
system("start \"Pinging Router with IP of: $IPSCHEME\" ping router.$CID.af.com -t");
The window is correctly labeled using my variables, however; the command is not executed. I get a command prompt window with a c:\ prompt.
#$IPSCHEME is a predefined variable
#containing an IP Address string
#
#$CID is a predefined variable
#containing a Center ID
system("start \"Pinging Router with IP of: $IPSCHEME\" ping router.$CID.af.com -t");
The window is correctly labeled using my variables, however; the command is not executed. I get a command prompt window with a c:\ prompt.