vote up 1 vote down star

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,

flag

5 Answers

vote up 0 vote down
Set objShell = CreateObject("WScript.Shell")
Set colEnvironment = objShell.Environment("PROCESS")
objPath = colEnvironment("temp")
WScript.Echo objPath

In that case

Set objShell = CreateObject("WScript.Shell")
Set colEnvironment = objShell.Environment("PROCESS")
objPath = colEnvironment("windir")
WScript.Echo objPath & "\temp"

hope this will help

link|flag
This still seems to be returning "my" temp dir. Rather than the system dir. e.g. on WinXP I'm looking to get "C:\WINSOWS\Temp" and not my own temp dir. – Mike Nov 5 at 12:09
Is "windir" consistent across other OS's? Will services run on Server2008 still use %winddir%\Temp ? – Mike Nov 5 at 12:15
You can also use "systemroot" instead of "windir". These all are Environment variables by default in the system and as far as I think, this should not change with new versions of windows, otherwise on upgrading the server all the previous installed applications (which uses these environment variables) will fail. – Ismail S Nov 5 at 13:07
Whatever, let me mention it clearly here, that I don't know if temp folder for services resides at "%windir%\temp" or "%systemroot%\temp" for Server 2008 or not. I think anyone can having sever 2008 installed can help us by trying %systemroot%\temp in run window and let us know. – Ismail S Nov 5 at 13:11
vote up 0 vote down

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...

link|flag
In C# I prefer using: Path.GetTempPath() – Mike Nov 5 at 13:55
Yes, however, something like this will expose to others a larger group of elements they might not have otherwise known were there. The System.Environment area has a lot of stuff available in it. – DRapp Nov 5 at 14:38
I think solution is required in vbscript. – Ismail S Nov 6 at 6:44
vote up 0 vote down

This may be of interest: http://msdn.microsoft.com/en-us/library/bb774096%28VS.85%29.aspx

link|flag
vote up 0 vote down

Here you go (in VBS)

Set environmentVars = WScript.CreateObject("WScript.Shell").Environment("Process")
tempFolder = environmentVars("TEMP")
msgbox(tempFolder)

I'm not sure if your system will have an environment variable called "TEMP", so go to the command line and type

set

You'll get a list of environment vars, and their values. Pick the one that has your temp folder in it.

link|flag
vote up 0 vote down check

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).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.