Last active
March 6, 2022 06:10
-
-
Save zeheater/8b1e28cbc64bfaa187d7c97b9f567471 to your computer and use it in GitHub Desktop.
Unlock Old Excel Protected Sheet Without Password
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Option Explicit | |
Sub GetPass() | |
Const a = 65, b = 66, c = 32, d = 126 | |
Dim i#, j#, k#, l#, m#, n#, o#, p#, q#, r#, s#, t# | |
With ActiveSheet | |
If .ProtectContents Then | |
On Error Resume Next | |
For i = a To b | |
For j = a To b | |
For k = a To b | |
For l = a To b | |
For m = a To b | |
For n = a To b | |
For o = a To b | |
For p = a To b | |
For q = a To b | |
For r = a To b | |
For s = a To b | |
For t = c To d | |
.Unprotect Chr(i) & Chr(j) & Chr(k) & Chr(l) & Chr(m) & Chr(n) & Chr(o) & Chr(p) & Chr(q) & Chr(r) & Chr(s) & Chr(t) | |
Next t | |
Next s | |
Next r | |
Next q | |
Next p | |
Next o | |
Next n | |
Next m | |
Next l | |
Next k | |
Next j | |
Next i | |
MsgBox "Finished" | |
End If | |
End With | |
End Sub | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment