jscript - "Unspecified Error" 80004005 when creating new Access database, only on another workstation -
what have jscript file gets called cscript , , script proof-of-concept creates new access 2007 format database, imports set of vba modules database, , runs subroutine imported modules. this script works flawlessly on own computer. have office 2013 installed. however, brought script on coworker's machine , had him attempt running it. on machine, error looked like, createdb.js (22, 1): unspecified error , error code 80004005. code, below: 'use strict'; /** * acnewdatabaseformat enumeration * used newcurrentdatabase method specify database format of newly created database. */ var acmodule = 5, dbtext = 10, acnewdatabaseformat = { userdefault: 0, access2000: 9, access2002: 10, access12: 12 }; var fs = new activexobject('scripting.filesystemobject'); var access = new activexobject('access.application'); var basepath = fs.getparentfoldername(wscript.scriptfullname); var db, prop, vcsfolder, fcur, module; /...