I am trying to copy the line below to a new text file using a batch file. The line is given below:
objIEA.Navigate "http://"&WScript.Arguments(0)&"/video?session=3&alphabet=83&channel="&WScript.Arguments(1)&"&profile="& WScript.Arguments(2)
What I did is something like this and I am getting an error while executing the batch file.
ECHO objIEA.Navigate "http://"&WScript.Arguments(0)&"/video?session=3&alphabet=83&channel="&WScript.Arguments(1)&"&profile="& WScript.Arguments(2) > test.txt
The new file will have a .vbs extension, but it is not even working for test.txt.