Dim WSHShell Dim strRipper 'location of Python ripper script strRipper = "realToMp3.py" Set WSHShell = WScript.CreateObject("WScript.Shell") streamUrl = InputBox("Enter the stream to be converted","Real Audio or WMV -> MP3","r|w|p http://paste.stream.URL.here") If streamUrl <> "" Then Call WshShell.Run(strRipper & " " & streamUrl,1,true) Else WScript.Echo "No stream entered" End If WScript.Quit()