Hi
I need to record some of the ping results of VMs
My requirements
When i execute the script I need to ping multiple VMs and record the ping results to a text file and when i need to stop I can press CTRL C and break the pings
I have done this script
@ECHO
START CMD ping NLAMSV00xxx -t -w 5000 >c:\pingresults\NLAMSV00xx0.txt
START CMD ping NLFRAV0xxx -t -w 5000 >c:\pingresults\NLFRAV001xxx.txt
START CMD ping NLAMSV0xxx -t -w 5000 >c:\pingresults\NLAMSV000xxx.txt
START CMD ping NLFRAV0xxx -t -w 5000 >c:\pingresults\NLFRAV00xxx.txt
START CMD ping NLAMSV00xxx -t -w 5000 >c:\pingresults\NLAMSV00xxx.txt
START CMD ping NLFRAxxx -t -w 5000 >c:\pingresults\NLFRAV003xxx.txt
When I execute the script file I get multiple windows open and the ping works, but when i check the saved text files it's all blank
I need to save the results in test file thats my main aim
can someone help me out pleas