About 621,000 results
Open links in new tab
  1. how to change directory using Windows command line

    Jul 8, 2017 · The "cd" command changes the directory, but not what drive you are working with. So when you go "cd d:\temp", you are changing the D drive's directory to temp, but staying in the C drive.

  2. How to execute a Windows command on a remote PC?

    Aug 13, 2012 · Is it possible to execute a Windows shell command on a remote PC when I know its login name and password? Is it possible to do it using client PC's Windows shell?

  3. How do I run a Java program from the command line on Windows?

    Apr 22, 2013 · 3 STEP 1: FIRST OPEN THE COMMAND PROMPT WHERE YOUR FILE IS LOCATED. (right click while pressing shift) STEP 2: THEN USE THE FOLLOWING COMMANDS TO EXECUTE. …

  4. Install a Windows service using a Windows command prompt?

    Apr 5, 2017 · I want to install a Windows service using a Windows command prompt (not the Visual Studio command prompt). How do I do this?

  5. How do I execute cmd commands through a batch file?

    16 start cmd /k "your cmd command1" start cmd /k "your cmd command2" It works in Windows server2012 while I use these command in one batch file.

  6. How to grant permission to users for a directory using command line …

    May 28, 2010 · How can I grant permissions to a user on a directory (Read, Write, Modify) using the Windows command line?

  7. In Windows cmd, how do I prompt for user input and use the result in ...

    In Windows cmd, how do I prompt for user input and use the result in another command? Asked 16 years, 5 months ago Modified 3 years, 5 months ago Viewed 1.6m times

  8. python - I can't use pip (Windows) - Stack Overflow

    This should be all. Close your command prompt, open it again and run pip --version to test it. If it doesn't work, then search your computer for a file named pip.exe (most likely in your Python directory) and if …

  9. python - How to run Pip commands from CMD - Stack Overflow

    Apr 23, 2015 · 4 Firstly make sure that you have installed python 2.7 or higher Open Command Prompt as administrator and change directory to python and then change directory to Scripts by typing cd …

  10. Using parameters in batch files at Windows command line

    364 As others have already said, parameters passed through the command line can be accessed in batch files with the notation %1 to %9. There are also two other tokens that you can use: %0 is the …