| |
NewBee
Posts: 32
Score: 0
Joined: 2/10/2006
Status: offline
|
just wanted to know if any one has any vbscript that would do the following using dial.exe toll it will dial a set of numbers 1234567890 play a sound file and hang up, than dial 2345678901 play the same sound file and hang up again. thanks i found this script that plays the sound but i need this to be played over the established telephone connection. strSoundFile = "C:\Notify.wav" Set objShell = CreateObject("Wscript.Shell") strCommand = "sndrec32 /play /close " & chr(34) & strSoundFile & chr(34) objShell.Run strCommand, 0, True
|
|