Check password proceted without opening the file

drom

Well-known Member
Joined
Mar 20, 2005
Messages
543
Office Version
  1. 2021
  2. 2019
  3. 2016
  4. 2013
  5. 2011
  6. 2010
  7. 2007
Hi and thanks in advance

Is it possible to know if a Excel file is password protected without opening the file ?

I have the following code:
Code:
Sub PasswordProtected()
  On Error Resume Next:               Application.ScreenUpdating = False
Dim rWorkBook As Range:               Set rWorkBook = Range("rWorkBook")
  Dim wFxFN As String:                wFxFN = rWorkBook
                                      Err.Clear
                                      Debug.Print Now
Dim xlApp As Excel.Application:       Set xlApp = CreateObject("Excel.Application")
Dim xlBook As Excel.Workbook:         Set xlBook = xlApp.Workbooks.Open(Filename:=wFxFN, UpdateLinks:=False, ReadOnly:=True, Password:="")
    
    If Err() = 1004 Then MsgBox "Password Protected"
    xlBook.Close
    xlApp.Quit

    Debug.Print Now
End Sub

but when the file is so big takes too long and since I have to open the File always...

I am trying to avoid the checking using the above macro.

I mean is there any way of checking if a file is password protected without opening the file
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.

Forum statistics

Threads
1,223,903
Messages
6,175,287
Members
452,631
Latest member
a_potato

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top