About 16,700,000 results
Open links in new tab
  1. cmd - What does "&&" do in this batch file? - Stack Overflow

    I received a line of code from someone who answered one of my questions, but I am confused: what do the "&&" do in this batch file. @echo off set /p Quest="How are you today? " echo …

  2. command line - What does the percent sign (% and %%) in a batch …

    1 It's a variable. That particular example uses the directory option of a FOR loop, iterating through the directories and assigning them to %%A. That's also not a command-line example, but a batch file …

  3. How to calculate optimal batch size? - Stack Overflow

    Oct 10, 2017 · If I reduce the batch size or the number of neurons in the model, it runs fine. Is there a generic way to calculate optimal batch size based on model and GPU memory, so the program …

  4. How do you loop in a Windows batch file? - Stack Overflow

    Aug 31, 2009 · FOR %%A IN (list) DO command parameters list is a list of any elements, separated by either spaces, commas or semicolons. command can be any internal or external command, …

  5. How to use if - else structure in a batch file? - Stack Overflow

    Jun 18, 2012 · I have a question about if - else structure in a batch file. Each command runs individually, but I couldn't use "if - else" blocks safely so these parts of my programme …

  6. What is the at sign (@) in a batch file and what does it do?

    Jan 13, 2014 · One remotely familiar with windows/dos batch scripting will recognize this line: @echo off For many-many days, I was happy with the sentiment that the @ is how echo off is meant to …

  7. Open a Web Page in a Windows Batch FIle - Stack Overflow

    Oct 6, 2014 · I have a batch file that does a bunch of things and at the end needs to open up a web browser to a page. Is there a way to, in essence, call ShellExecute on a http to open the web …

  8. windows - How can I delete all files/subfolders in a given folder via ...

    Apr 27, 2015 · I would like to delete all files and subfolders using a batch file in Windows 7 and keep the top folder. Basically emptying the folder.

  9. batch file - How to echo with different colors in the Windows …

    I know that the color bf command sets the colors of the whole command line window but I wanted to to print one single line in a different color.

  10. Batch file: Find if substring is in string (not in a file)

    Aug 10, 2011 · In a batch file, I have a string abcdefg. I want to check if bcd is in the string. Unfortunately it seems all of the solutions I'm finding search a file for a substring, not a string for a …