About 24,300 results
Open links in new tab
  1. command line - How can I pass an argument to a PowerShell …

    powershell.exe itunesForward.ps1 Is it possible to pass an argument from the command line and have it applied in the script instead of the hardcoded 30 seconds value?

  2. How to open an elevated cmd using command line for Windows?

    Sep 30, 2013 · How do I open a elevated command prompt using command lines on a normal cmd? For example, I use runas /username:admin cmd but the cmd that was opened does not …

  3. Run PostgreSQL queries from the command line - Stack Overflow

    Jul 17, 2025 · The single-line option mentioned by @Gordon is a CAPITAL s (i.e -S), if you use lower-case -s that means single-step mode (confirm each query)). You can see the options by …

  4. Running a command as Administrator using PowerShell?

    Sep 12, 2016 · Here is how to run a elevated powershell command and collect its output form within a windows batch file in a single command (i.e not writing a ps1 powershell script).

  5. How can I execute PHP code from the command line?

    Feb 18, 2025 · If you run this command: php -i | grep 'API' You should see: Server API => Command Line Interface If you don't, this means that maybe another command will provides …

  6. How do you run a command as an administrator from the …

    May 10, 2011 · The command prompt still runs without admin rights even if you set the shortcut up as "run as administrator". This is when I try to use the shortcut via Task Scheduler.

  7. command line - How to run SQL script in MySQL? - Stack Overflow

    Jan 20, 2012 · From Workbench: File > Run SQL Script -- then follow prompts From Windows Command Line: Option 1: mysql -u usr -p mysql> source file_path.sql Option 2: mysql -u usr …

  8. How do I access command line arguments? - Stack Overflow

    How do I access command line arguments? [duplicate] Asked 15 years, 2 months ago Modified 2 years, 4 months ago Viewed 999k times

  9. Running shell command and capturing the output - Stack Overflow

    Finally, if your project uses the cli module, you can run directly another command_line_tool as part of a pipeline. The other tool will be run from the same process, but it will appear from the …

  10. How to start up spring-boot application via command line?

    To run your Spring Boot app from a command line in a Terminal window you can use java -jar command. This is provided your Spring Boot app was packaged as an executable jar file.