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 create bat file that will install windows service, passed as a parameter.

This is contents of bat file that is working:

installutil "D:\MVisum\MVisumCCS\Message Generator\MessageGenerator.exe"

But this is not generic. I have tried it by: installutil /i 1% and it is not working. I want to pass path of service that I want to install as a parameter to my bat file.

Please help me out.

share|improve this question
What do you mean by it is not working? How do you run your batch script (the one with %1)? Are there any errors produced? – Andriy M Jul 11 '12 at 9:39

1 Answer

up vote 1 down vote accepted

If your non-generic one is working then try this generic one

installutil %1

Usage:

mybatchfile.bat "C:\myservice.exe"
share|improve this answer
You shouldn't enclose %1 in double quotes. If the batch file was invoked like this: mybatchfile.bat C:\my service.exe, then %1 would evaluate to C:\my, not to C:\my service.exe (and so no need to add the quotes). To explicitly specify that C:\my service.exe is a single item, one would have to enclose the argument in double quotes when running the script: mybatchfile.bat "C:\my service.exe", and thus %1 in your script would evaluate to an already quoted item (so, again, no need to add the quotes). – Andriy M Jul 11 '12 at 9:29
Thanks Andriy, I didn't relise that, I have edited my answer. – Bali C Jul 11 '12 at 9:35

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.