As a preface, I really do not want the exact solution to my problem, just guidance. I don\'t want you to give me the code. This isn\'t homework, it\'s just an exercise I\'m trying to solve.
* represent anything ? represent a character like dos filename *.test.com will match aaa.test.com but not match test.com
I need to write a batch file that call a command and passes a date parameter for the previous day. Example:
I have a batch file that outputs a list of commands which themselves can be executed at the command line.
I have a program(A) and there is anather executable file(B) in the same folder. I must call function from this anther program(B) in my pro开发者_如何学Cgram(A). And all this must be done in dos. How c
I am trying to get cs (current seg开发者_高级运维ment) register value by using c language. I tried it bay assembler by this code: __asm__(\"movw %%eax, %%ecs;\" : \"=r\" ( cur_seg )); but my project d
Assume I have steps in a batch file as follows. set 开发者_StackOverflowdir=%CD% cd ..\\notes dir /b *.tex > %dir%\\log.txt
how to i get UTC time in batch file (开发者_JAVA技巧or msdos)? instead of systems time format not like dd/MMM/yyyyWithout doing your own date math, there isn\'t a good way in pure batch.The only time
I have about 7 commands in DOS and I want to run them in my C# program. Can I do: System.Diagnostics.Process.Start(\"cmd.exe\", \"my more commands here\");
I have a Windows batch file that starts other batch files.How do I wait for all the other batch files to finish before executing somthing in the first batch?I can\'t use /wait because I need t开发者_如