Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a text file that ends with .vbs that I have written the following in:

Set Conn = CreateObject("ADODB.Connection")
Conn.Provider = "Microsoft.ACE.OLEDB.12.0"
Conn.Properties("Data Source") = "C:\dummy.accdb"
Conn.Properties("Jet OLEDB:Database Password") = "pass"
Conn.Open

Conn.Close Set Conn = Nothing

When I execute this on a Windows 32-bit machine it runs and ends without any notion (expected). When I execute this on a Windows 64-bit machine it gets the error "Provider cannot be found. It may not be properly installed.".

But it is installed. I think the root of the problem is that the provider is a 32-bit provider, as far as I know it doesn't exist as 64-bit.

If I run the VBScript through IIS on my 64-bit machine (as a ASP file) I can select that it should run in 32-bit mode. It can then find the provider.

How can I make it find the provider on Windows 64-bit? Can I tell CScript (which executes the .vbs text file) to run in 32-bit mode somehow?

share|improve this question

3 Answers

up vote 23 down vote accepted

follow http://support.microsoft.com/kb/896456

To start a 32-bit command prompt, follow these steps:

* Click Start, click Run, type %windir%\SysWoW64\cmd.exe, and then click OK.

Then type

cscript vbscriptfile.vbs
share|improve this answer
Thanks a lot, it worked. :) Didn't know SysWoW64 contained a 32-bit command prompt, why is it named "SysWoW64" anyway? – Peter May 10 '10 at 21:41
4  
WoW stands for Windows on Windows. It's a compatibility layer that makes 64-bit Windows act like 32-bit Windows so it can run 32-bit programs. – Tmdean May 10 '10 at 21:43
Very helpful and interesting, I didn't know that. Always nice to get closer to understanding the inner workings of Windows, thanks a lot. – Peter May 10 '10 at 21:48

If you have control over running the cscript executable then run the X:\windows\syswow64\cscript.exe version which is the 32bit implementation.

share|improve this answer
Thanks a lot, it worked. :) – Peter May 10 '10 at 21:41
Set oFso = CreateObject("Scripting.FileSystemObject")
Set oWs = CreateObject("WScript.Shell")
If InStr(WScript.FullName, "C:\Windows\System32\") And oFso.FolderExists("C:\Windows\SysWow64") Then
    ' rebuild arguments?
    oWs.Run "C:\Windows\SysWow64\WScript.exe """ & WScript.ScriptFullName & """"
    WScript.Quit
End If
share|improve this answer
Add a little explanation please – Ed Heal Mar 10 at 9:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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