About 21,200,000 results
Open links in new tab
  1. Using parameters in batch files at Windows command line

    Using parameters in batch files: %0 and %9 Batch files can refer to the words passed in as parameters with the tokens: %0 to %9. %0 is the program name as it was called. %1 is the first command line …

  2. Make a Bash alias that takes a parameter? - Stack Overflow

    Aug 20, 2011 · You don't make an alias that takes parameters because alias just adds a second name for something that already exists. The functionality the OP wants is the function command to create a …

  3. How can I pass an argument to a PowerShell script?

    Both this and the accepted solution work, the main difference is that this reads parameters by position, while the accepted solution does it by name. When multiple parameters need to be passed, passing …

  4. How are parameters sent in an HTTP POST request?

    "In an HTTP POST request, the parameters are not sent along with the URI." - though it can be (just theoretically), do not confuse other people. POST, in accordance to spec, MUST serve non …

  5. How can I pass arguments to a batch file? - Stack Overflow

    Been looking at using this method as I would like to pass arguments into a batch file in this manner. However I notice that after the variables are set, even after exiting the batch file the parameters are …

  6. windows - Using the "start" command with parameters passed to the ...

    So I changed my command to use the START command, instead: start "c:\program files\Microsoft Virtual PC\Virtual PC.exe" -pc MY-PC -launch But it chokes on the parameters passed into Virtual PC. …

  7. Passing parameters to a Bash function - Stack Overflow

    Jun 2, 2011 · I am trying to search how to pass parameters in a Bash function, but what comes up is always how to pass parameter from the command line. I would like to pass parameters within my …

  8. sql - including parameters in OPENQUERY - Stack Overflow

    Jul 31, 2010 · How can I use a parameter inside sql openquery, such as: SELECT * FROM OPENQUERY([NameOfLinkedSERVER], 'SELECT * FROM TABLENAME where …

  9. How to run an EXE file in PowerShell with parameters with spaces and ...

    Nov 4, 2009 · To transfer a batch script using exiftool.exe to a powershell script I had the challange to give '-s, "-s and even $ {Filename} to the command and on the other hand fill out variables in these …

  10. .NET Core DI, ways of passing parameters to constructor

    Dec 21, 2018 · The parameters to pass to your service's constructor (the object[] parameter to CreateInstance<T> / CreateInstance) allows you to specify parameters that should be injected …