Skip to content

Latest commit

History

History
20 lines (11 loc) 路 486 Bytes

set.md

File metadata and controls

20 lines (11 loc) 路 486 Bytes

set

Display or set environment variables for the current instance of CMD. More information: https://docs.microsoft.com/windows-server/administration/windows-commands/set.

  • List all current environment variables:

set

  • Set an environment variable to a specific value:

set {{name}}={{value}}

  • List environment variables starting with the specified string:

set {{name}}

  • Prompt the user for a value for the specified variable:

set /p {{name}}={{prompt_string}}