Batu69 Posted September 10, 2016 Share Posted September 10, 2016 Environment variables in an operating system are values that contain information about the system environment, and the currently logged in user. They existed in OSes before Windows as well, such as MS-DOS. Applications or services can use the information defined by environment variables to determine various things about the OS, for example, to detect the number of processes, the currently logged in user's name, the folder path to the current user's profile or the temporary files directory. In this article, we will see how to view environment variables defined in Windows 10 and their values for the current user and the system variables. Windows 10 has several types of environment variables: user variables, system variables, process variables and volatile variables. User environment variables are accessible to all apps which run in the current user context, system environment variables apply to all users and processes on the PC; process variables are applicable only to a specific process and volatile variables are those which exist only for the current logon session. Most interesting of these are user, system and process variables, as we can modify them. How to view user and system environment variables and their values The most simple way to view the current user variables is to use the System Properties. 1. Open the Control Panel. 2. Navigate to the following applet: Control Panel\System and Security\System 3. Click the "Advanced System Settings" link on the left. In the next dialog, you will see the Environment Variables... button in the bottom of the Advanced tab. Click it. 4. The Environment Variables window will appear on the screen. In the upper table, you will see user variables, and the bottom list contains system-wide variables. Here you can view their names and values or even create your own variables, or edit the value of some variable if required. There are several other ways to see environment variables. You can see them at the appropriate registry keys. Open Registry Editor. To see user variables, go to the following key: HKEY_CURRENT_USER\Environment Tip: How to jump to the desired registry key with one click. To see system variables, navigate to the following key: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment Alternatively, you can view environment variables via the command prompt. Open the command prompt window, and type the following command and then press Enter: set The set command will print all available environment variables with their values, directly into the console output, so you will able to see them all at once. If you want to see the value of a specific variable, then use the echo command instead of set, as follows:echo %userprofile% The command above will print the path to your account profile. Replace userprofile with the desired name of the variable. For example, echo %computername%. That's it. That's it. Now you know all the useful ways to see the names and values of variables defined in your Windows environment. Article source Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.