Vista, IIS7, Classic ASP, and Microsoft Access – How to Get It Working!
First, make sure ASP Classic Is Installed on Vista, good instructions here
Make sure your app is set up as a virtual directory, etc, etc.
Then, you need to set permissions and run commands and change around settings just to get anywhere. Just for kicks I made the IUSR for the directory have modify rights, but I am not sure if that did anything, oh well, I am not changing it back.
I ran the default page, and got this
An error occurred on the server when processing the URL. Please contact the system administrator
Nice huh? Well, I went and turned off Friendly HTTP Errors in IE Internet Options, that didn’t give me anymore info, so, found this:
cscript %systemdrive%\inetpub\adminiscripts\adsutil.vbs set w3svc/AspScriptErrorSentToBrowser true
That will send the actual errors to the browser, ok good.
Now, getting this:
Microsoft OLE DB Provider for ODBC Drivers error ’80004005′
Found out you need to run 3 more commands to get this to work… ok
icacls %windir%\serviceprofiles\networkservice\AppData\Local\Temp /grant Users:(CI)(S,WD,AD,X)
icacls %windir%\serviceprofiles\networkservice\AppData\Local\Temp /grant “CREATOR OWNER”:(OI)(CI)(IO)(F)
And
%windir%\system32\inetsrv\appcmd set config -section:applicationPools /[name='DefaultAppPool'].processModel.loadUserProfile:false
After all that nonsense, the page/app actually worked! What a debacle…
Simlar Posts
- Get Microsoft Windows Vista SP1 RTM NOW!
- SSAS: Deploying Cube OLE DB Error – Login Failed
- SQL 2005: SSIS – Pushing Data to MySQL using Script Component Destination
- ETL Method – Fastest Way To Get Data from DB2 to Microsoft SQL Server
- HowTo: Get iSight Camera Working in Windows XP through Parallels 3.0 on MacBook
