Has anybody managed to install DNN in a Web farm on IIS7/Windows 2008? The installation wizard doesn't seem to be able to complete the permission checks successfully when Web app uses UNC path...
Local installation works, IIS6 is fine with UNC path, but when running on IIS7/Windows 2008 RC0, Directory.CreateDirectory in InstallWizard.aspx.vb fails with "Access Denied" no matter what the permissions in IIS, file share, and file system:
-> Everyone has Full Control to share, folder, subfolders, root drive, everywhere
-> Anonymous included in Everyone through security policy
->DOMAIN\SERVER$, NETWORK SERVICE, ANONYMOUS LOGON all have Full Control
-> There is litterally not a single built-in account, user account, or machine account left on my test systems without Full Control...
-> IIS uses domain admin account to access file share
-> AppPool uses domain admin identity
-> Anonymous IIS user mapped to domain admin
-> CasPolicies seem OK. Modified InstallWizard.aspx.vb to skip permissions checks and wizard will load db and complete just fine, but of course this isn't a solution--just a check to see if everything else worked.
I guess the question is how to get Directory.CreateDirectory(path) to work on IIS7 if path is in UNC format???
Any ideas and hints appreciated.