I want to create a .bat file so I can just click on it so it can run:
svcutil.exe /language:cs /out:generatedProxy.cs /config:app.config http://localhost:8000/ServiceModelSamples/service
Can someone help me with the structure of the .bat file?
|
I want to create a .bat file so I can just click on it so it can run:
Can someone help me with the structure of the .bat file? |
||||
|
|
|
To start a program and then close command prompt without waiting for program to exit:
|
|||
|
|
|
Just put that line in the bat file... Alternatively you can even make a shortcut for svcutil.exe, then add the arguments in the 'target' window. |
|||
|
|
|
it is very simple code for executing notepad bellow code type into a notepad and save to extension .bat Exapmle:notepad.bat
(above code "c:\windows\system32" is path where you kept your .exe program and notepad.exe is your .exe program file file) enjoy! |
||||
|
|
|
A bat file has no structure...it is how you would type it on the command line. So just open your favourite editor..copy the line of code you want to run..and save the file as whatever.bat or whatever.cmd |
|||
|
|
|
What's stopping you? Put this command in a text file, save it with the .bat (or .cmd) extension and double click on it... Presuming the command executes on your system, I think that's it. |
|||
|
|
|
Just stick in a file and call it "ServiceModelSamples.bat" or something. You could add "@echo off" as line one, so the command doesn't get printed to the screen:
|
|||
|
|
|
If you want to be real smart, at the command line type:
Then you have |
|||
|
|
|
If your folders are set to "hide file extensions", you'll name the file *.bat or *.cmd and it will still be a text file (hidden .txt extension). Be sure you can properly name a file! |
|||
|
|
|
Well, the important point it seems here is that svcutil is not available by default from command line, you can run it from the vs xommand line shortcut but if you make a batch file normally that wont help unless you run the vcvarsall.bat file before the script. Below is a sample "C:\Program Files\Microsoft Visual Studio *version*\VC\vcvarsall.bat" svcutil.exe /language:cs /out:generatedProxy.cs /config:app.config http://localhost:8000/ServiceModelSamples/service |
|||
|
|
|
You can use:
NOTE: the first set of quotes must be there but you don't have to put anything in them Eg:
|
||||
|
|
|
As described here, about the
|
|||
|
|
if you want it right you do as this.
if you get something wrong: make sure you have the program, saved as: example.bat, made by: Notepad. |
||||
|
|