Windows – TEMP vs TMP in Environment Variables

environment-variableswindowswindows 7

Is it right to have these two environment variables TEMP and TMP? If I make changes to one should I make the same changes to the other? For example I was installing cygwin and the directions told me to change the PATH variable, but both TEMP and TMP have the path variable. What is the difference between the two?

screen shot of environment variables

Not sure why people want to see this but here's the values to the path:
Path in TEMP: C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Common Files\Acronis\SnapAPI\;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Windows Live\Shared

Path in TMP: %USERPROFILE%\AppData\Local\Temp

Best Answer

To answer the question specifically:

What is the difference between the two?

There is no difference. They are just different aliases for the same path. As Mark mentioned, some programs use %TMP% while other use %TEMP%. Windows assigns both to the same path by default to ensure consistency between different programs, and even protect against developer errors such as using both in the same program.

Also note that the %Path% variable has nothing to do with either %TMP% or %TEMP%. %Path% is a system variable, while %TMP% and %TEMP% are both system variables as well as user variables. The system versions link to C:\windows\TEMP. AFAIK, only the "System" user can actually use those variables, as evidenced by a simple test; open a cmd window and type in echo %TMP% or echo %TEMP%, and it returns the path defined in the user version of the variables. However since %Path% has no user version (by default), you can do echo %Path% and it returns the value of the system variable.

I'm not entirely sure how programs use the "Path" system variable, which is likely what cygwin was referring to, but regardless, I can assure you it has nothing to do with TMP or TEMP.

Hope that answers your question.

EDIT: I just remembered what %Path% is for — it lets you access any files that are in any of the paths specified in the variable without needing to use the full path to the file. For example, adding "C:\myprog\bin" to %Path% will let you just type myprog or myprog --help etc into the command-line without having to type out the full path, like "C:\myprog\bin\myprog.exe" --help. Of course command-line use is only an example, it lets any program or interface access any kind of file without needing the full path.

Related Question