Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to run follwing (working) windows command in bat file

C:\Program Files\Skype\Phone\Skype.exe /secondary

I have placed following instructions in a bat file but it is not running

start "My Skype Runner" "C:\Program Files\Skype\Phone\Skype.exe" "secondary"

Can some one guide me what Iam doing wrong and how it can be rectified.

Thanks in advance

share|improve this question

4 Answers

Why don't you try simply:

"C:\Program Files\Skype\Phone\Skype.exe" /secondary
share|improve this answer

Write the following command in batch file:

"C:\Program Files\Skype\Phone\Skype.exe" /secondary
share|improve this answer
up vote 1 down vote accepted

I have tried following and it worked :

start "My Skype Runner" "C:\Program Files\Skype\Phone\Skype.exe" "/secondary"
share|improve this answer

I'm not sure about your computer, but on mine, Skype is located at:

"C:\Program Files (x86)\Skype\Phone\Skype.exe"
share|improve this answer
that you have (x86) in the path shows you are running a 64 bit Windows - it's just Program Files with a 32 bit version of Windows – Sean Cheshire Sep 4 '12 at 15:35
I'm aware of that; the point is more the 'Phone\' rather than the '(x86)' part. – Infiltrator Sep 5 '12 at 3:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.