How can I decrypt or gain access to a protected Access database?

前端 未结 1 726
南旧
南旧 2021-01-19 21:33

I\'ve taken over an old software project which uses an MS Access database to store its data. However the database won\'t open in Access as it says:

\"

相关标签:
1条回答
  • 2021-01-19 22:06

    The chances are pretty good that the .mdw file is the workgroup file for that .mdb database. (The .mdw file does not need to have the same name as the .mdb file because several different .mdb files can all share the same workgroup security settings.)

    To access an .mdb file that has user-level (workgroup) security enabled you need to open it using a shortcut (or command-line invocation) of the form

    "C:\Program Files\Microsoft Office\Office14\MSACCESS.EXE" "C:\Users\Public\uls\ulsTest.mdb" /WRKGRP "C:\Users\Public\uls\Security.mdw"
    

    For a more detailed write-up, take a look here.

    0 讨论(0)
提交回复
热议问题