Se você souber qual é a senha, vá em frente e abra o documento do Excel. Em seguida, clique em Arquivo> Salvar como. À esquerda do botão Salvar, há uma pequena lista suspensa Ferramentas. Clique nisso e, em seguida, clique em Opções gerais. Exclua as entradas de senha e clique em OK. Salve o documento.
Se você não souber qual é a senha, poderá usar o VBA para encontrá-la. Se eu tivesse que adivinhar, seu usuário provavelmente não usaria uma senha super forte, para que pudéssemos usar um método do tipo força bruta para encontrá-la. O código abaixo é difícil, mas me ajudou a encontrar uma senha fraca e perdida em vários documentos dos meus usuários. Ele verifica senhas de qualquer tamanho com os caracteres ASCII de 1 a z. Você poderia chamá-lo da Janela Imediata e esperar alguns minutos assim:
? GetPassword("D:\mywkbk.xlsx")
-
Public Function GetPassword(ByRef sFileName As String) As String
On Error Resume Next
Dim pw As String
pw = ""
Do
VBA.Err.Clear
pw = GenerateNextPassword(pw)
Application.Workbooks.Open sFileName, False, True, , pw, pw
VBA.DoEvents
Loop While VBA.Err.Number = 5408
GetPassword = pw
End Function
Public Function GenerateNextPassword(ByRef sCurrentPassword As String) As String
Const MAX_CHAR = 122
Const MIN_CHAR = 49
Dim sCurrentPasswordMax As String
Dim sNewPassword As String
Dim i As Long
sCurrentPasswordMax = String(Len(sCurrentPassword), Chr(MAX_CHAR))
If sCurrentPassword = sCurrentPasswordMax Then
'do an increment that changes the length
sNewPassword = String(Len(sCurrentPassword) + 1, Chr(MIN_CHAR))
Debug.Print Now(); ": "; sNewPassword
ElseIf Asc(Right(sCurrentPassword, 1)) = MAX_CHAR Then
'do an increment that changes multiple characters
sNewPassword = Left(sCurrentPassword, Len(sCurrentPassword) - 1) & Chr(MIN_CHAR)
For i = Len(sCurrentPassword) - 1 To 1 Step -1
sNewPassword = Left(sNewPassword, i - 1) & Chr(Asc(Mid(sNewPassword, i, 1)) + 1) & Mid(sNewPassword, i + 1)
If Asc(Mid(sCurrentPassword, i, 1)) <> MAX_CHAR Then
Exit For
End If
Next i
Else
'do an increment on the rightmost character
sNewPassword = Left(sCurrentPassword, Len(sCurrentPassword) - 1) & Chr(Asc(Right(sCurrentPassword, 1)) + 1)
End If
GenerateNextPassword = sNewPassword
End Function
decrypt xls
ou algo semelhante.