About 12,900,000 results
Open links in new tab
  1. How to pass a variable into a YAML template parameter and use it …

    Feb 15, 2025 · If you are passing a variable into a template parameter with the intention of using it as part of another runtime expression, the easiest method is to copy the parameter to a variable.

  2. Setting JAVA_HOME environment variable in MS Windows

    12 Set the JAVA_HOME Variable Windows 7 – Right click My Computer and select Properties > Advanced Windows 8 – Go to Control Panel > System > Advanced System Settings Windows …

  3. Defining and using a variable in batch file - Stack Overflow

    I'm trying to define and use a variable in a batch file. It looks like it should be simple:

  4. How to use a variable group in a Azure Pipelines yml template?

    Apr 11, 2022 · Turns out, when you reference a variable group in the main pipeline yml, you automatically have access to it in the template yml. But for normal script steps you still have to …

  5. Declaring variables in Excel Cells - Stack Overflow

    Apr 9, 2009 · Is it possible to declare variables in Excel cells and use them as parameters for formulas in other cells? For example I would declare var1=10 in one of the cells. In another …

  6. What does variable names beginning with _ mean? - Stack Overflow

    Feb 14, 2009 · When writing my first asp.net MVC application using C#, I see that there are some variables whose name start with an underscore character(_). What does this mean? Is there …

  7. Set an environment variable in git bash - Stack Overflow

    Dec 9, 2015 · Set a regular Windows environment variable. Git-bash gets all existing Windows environment variables at startup. Set up environment variables in .bash_profile file. …

  8. How to set command's output as a variable in a batch file

    Jun 15, 2011 · None of the answers seems to work for me. My command is "openssl dgst -sha384 -binary %1% | openssl base64 -A" and I wish the string output to be stored in a variable in a …

  9. Setting Windows PowerShell environment variables - Stack Overflow

    I have found out that setting the PATH environment variable affects only the old command prompt. PowerShell seems to have different environment settings. How do I change the …

  10. Defining a variable with or without export - Stack Overflow

    When you export a variable, it puts that variable in the environment of the current shell (ie the shell calls putenv(3) or setenv(3)). The environment of a process is inherited across exec, …