vote up 3 vote down star

I'm impersonating a user until Windows 2008 with UAC enabled. I'm trying to write some files to a temp directory. But even if a user has write access to a directory, when I impersonate that user, I'm unable to write to that directory (I get an Access Denied error). Apparently, this is due to UAC blocking me.

This is related to a post on a microsoft forum: http://forums.iis.net/t/1149793.aspx But that forum got no response other than a microsoft employee repeatedly asking the same question and being silent when he got the info he asked for.

I've been able to get around this by not impersonating while writing to the temp file, but I have a few questions:

  1. Why does UAC not allow writing to files when impersonated?

  2. Is there any place I can put temp files while impersonated?

  3. Is there some better solution? What's the "right" way to handle this?

  4. Is there a source of documentation for what all the restrictions are for UAC & impersonated users?

flag

2 Answers

vote up 1 vote down

Vista introduced integrity levels in addition to the standard permissions. Perhaps the integrity level your application is running as is lower than that required to write to the location/file.

Windows comes with a built in tool "cacls.exe", but I suggest chml from http://www.minasi.com/apps/ which makes it easier to view & edit them. See also http://msdn.microsoft.com/en-us/library/bb625964.aspx for more information.

link|flag
vote up 0 vote down

My guess is you are writing to the temp directory specified in %TEMP% or via GetTempPath. This is a process-wide environment variable, so it doesn't respect impersonation. A quick way to verify is to check the path you are writing to, to see if it is under the impersonated user's profile.

The following code should be able to retrieve the temp path for an impersonated user.

// Error checking removed for brevity.
// User profile must be loaded by this point,
// see LoadUserProfile/UnloadUserProfile
SHGetFolderPath(NULL, CSIDL_LOCAL_APPDATA, impersonationToken,
                SHGFP_TYPE_CURRENT,path);
StringCchCat(path, cchPath, "\Temp");
link|flag
That's not exactly what I'm looking for. I can get to the user's AppData directory. And it's normally writable by the user. But for some reason, under impersonation, I can't write to files in that directory. It's like Windows says, "we're in impersonation mode, so don't let them write to the disk at all". – Ron Romero May 1 at 12:17

Your Answer

Get an OpenID
or

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