1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 11:44:54 +02:00
tldr/pages/windows/set.md
2019-08-22 12:37:57 +00:00

20 lines
492 B
Markdown

# set
> Display or set environment variables for the current instance of CMD.
> More information: <https://docs.microsoft.com/en-us/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}}`