|
Answer» Hi Guys,
I want to use the below command USING batch file
start "C:\Documents and Settings\backupadmin\Desktop\macshift" macshift -r -i "Local Area Connection" if i save this in notepad and run as .bat file it just opens the macshift folder .My question is I want to run the macshift -r -i "Local Area Connection" using batch file .
Please any HELP will be appreciated.
Regards Alfred Start command SYNTAX is not correct. In any case you probably don't need to use it.
First suggestion: delete the word "start" at the beginning of the line.
Alternatively:
rewrite like this
cd /d "C:\Documents and Settings\backupadmin\Desktop\macshift" macshift -r -i "Local Area Connection"
Come back if neither RESOLVES the problem. Thanks its working......
Quote from: Alfred Leonce on April 07, 2013, 03:41:46 AM Thanks its working......
Which one worked? I did the changes what you mentioned in previous conversation.
Quote from: Alfred Leonce on April 08, 2013, 10:55:24 AMI did the changes what you mentioned in previous conversation.
I suggested TWO alternative methods. Which one did you use? Second Method...
|