I'm looking for something similar to this question. However, I am looking specifically to dynamically find the location of the system's temp folder (i.e. the temp folder used by services.)
Is this possible?
Thanks,
|
|
I'm looking for something similar to this question. However, I am looking specifically to dynamically find the location of the system's temp folder (i.e. the temp folder used by services.) Is this possible? Thanks,
|
|||
|
|
|
|
In that case
hope this will help |
||||||||
|
|
|
In C#, its... System.Collections.IDictionary Vars = System.Environment.GetEnvironmentVariables(); String TempPath = Vars["TEMP"]; You get an entire array of elements... Path, Temp, SessionName, PathExt, UserDomain, SystemDrive, WinDir, etc... |
||||||
|
|
|
This may be of interest: http://msdn.microsoft.com/en-us/library/bb774096%28VS.85%29.aspx |
||
|
|
|
|
Here you go (in VBS)
I'm not sure if your system will have an environment variable called "TEMP", so go to the command line and type
You'll get a list of environment vars, and their values. Pick the one that has your temp folder in it. |
||
|
|
|
|
After researching a little into this, I believe there is no way to use environment variables to capture the location of another user's %TEMP% folder (in this case the System user). |
||
|
|