# Learning Jenkins, 03-04: Parameters and environment variables Use parameters and environment variables in your Jenkins jobs ## WINDOWS SYSTEMS If you are running Jenkins on a Windows system, use variables with this format: ``` %VARIABLE_NAME% ``` ## MacOS, Linux, and Docker If you are running Jenkins on MacOS, Linux, or Docker, use variables with this format: ``` $VARIABLE_NAME ```