- Nov 23, 2005
- 29
- 0
- 0
For work I need to test network connections.
To do this I usally launch 8 or more pings @ 1400 bits.
Or ping ?l 1400 ?t, sometimes ?f
I can get VBS scripts to lunch multiply pings. Fine by using
Dim oShell
Set oShell = WScript.CreateObject ("WSCript.shell")
oShell.run "cmd /k ping 192.168.0.1 -l 1400 -t"
Set oShell = Nothing
Is it possible to some how add a box that ask me for the ip address?
So I could substitute the ip address with X or something like that
So every time I run the script it asks for the ip then lunches 8 or more pings to that ip?
To do this I usally launch 8 or more pings @ 1400 bits.
Or ping ?l 1400 ?t, sometimes ?f
I can get VBS scripts to lunch multiply pings. Fine by using
Dim oShell
Set oShell = WScript.CreateObject ("WSCript.shell")
oShell.run "cmd /k ping 192.168.0.1 -l 1400 -t"
Set oShell = Nothing
Is it possible to some how add a box that ask me for the ip address?
So I could substitute the ip address with X or something like that
So every time I run the script it asks for the ip then lunches 8 or more pings to that ip?