views:

964

answers:

1

I need to give access to the IIS user to a pfx certificate. The website is running under the App Pool under some user AppPoolUser. IIS automatically has the user name "IIS APPPOOL\AppPoolUser" and this is what we need to give access when we use aspnet_regiis -ga . However, when i use winhttpcertcfg to give access to the user "IIS APPPOOL\AppPoolUser", it says user doesn't exist. the command I use is

winhttpcertcfg -i <filename> -c <certificateLocation> - g -a <account name>

Didn't find any samples for this over the web. Any ideas?

A: 

check this

http://weblogs.asp.net/hernandl/archive/2005/02/09/WinHttpCertCfgTool.aspx

Regards, Vivek

Vivek
I tried that sample already. My certificate has access to many users now. Pool User, domain admin, everyone ...Looks like the appdomain is running under "LocalSystem" and I dont' see the way to give access to this user as the documentatin says, this is the user with admin access already.
bkhanal