當前位置:首頁 » 密碼管理 » 如何解除excel密碼保護
擴展閱讀
webinf下怎麼引入js 2023-08-31 21:54:13
堡壘機怎麼打開web 2023-08-31 21:54:11

如何解除excel密碼保護

發布時間: 2022-02-01 03:21:01

1. 如何破解EXCEL中的保護密碼

EXCEL工作表保護密碼破解
方法:
1\打開文件
2\工具---宏----錄制新宏---輸入名字如:aa
3\停止錄制(這樣得到一個空宏)
4\工具---宏----宏,選aa,點編輯按鈕
5\刪除窗口中的所有字元(只有幾個),替換為下面的內容:(復制吧)
6\關閉編輯窗口
7\工具---宏-----宏,選AllInternalPasswords,運行,確定兩次,等2分鍾,再確定.OK,沒有密碼了!!
內容如下:
Public Sub AllInternalPasswords()
' Breaks worksheet and workbook structure passwords. Bob McCormick
' probably originator of base code algorithm modified for coverage
' of workbook structure / windows passwords and for multiple passwords
'
' Norman Harker and JE McGimpsey 27-Dec-2002 (Version 1.1)
' Modified 2003-Apr-04 by JEM: All msgs to constants, and
' eliminate one Exit Sub (Version 1.1.1)
' Reveals hashed passwords NOT original passwords
Const DBLSPACE As String = vbNewLine & vbNewLine
Const AUTHORS As String = DBLSPACE & vbNewLine & _
"Adapted from Bob McCormick base code by" & _
"Norman Harker and JE McGimpsey"
Const HEADER As String = "AllInternalPasswords User Message"
Const VERSION As String = DBLSPACE & "Version 1.1.1 2003-Apr-04"
Const REPBACK As String = DBLSPACE & "Please report failure " & _
"to the microsoft.public.excel.programming newsgroup."
Const ALLCLEAR As String = DBLSPACE & "The workbook should " & _
"now be free of all password protection, so make sure you:" & _
DBLSPACE & "SAVE IT NOW!" & DBLSPACE & "and also" & _
DBLSPACE & "BACKUP!, BACKUP!!, BACKUP!!!" & _
DBLSPACE & "Also, remember that the password was " & _
"put there for a reason. Don't stuff up crucial formulas " & _
"or data." & DBLSPACE & "Access and use of some data " & _
"may be an offense. If in doubt, don't."
Const MSGNOPWORDS1 As String = "There were no passwords on " & _
"sheets, or workbook structure or windows." & AUTHORS & VERSION
Const MSGNOPWORDS2 As String = "There was no protection to " & _
"workbook structure or windows." & DBLSPACE & _
"Proceeding to unprotect sheets." & AUTHORS & VERSION
Const MSGTAKETIME As String = "After pressing OK button this " & _
"will take some time." & DBLSPACE & "Amount of time " & _
"depends on how many different passwords, the " & _
"passwords, and your computer's specification." & DBLSPACE & _
"Just be patient! Make me a coffee!" & AUTHORS & VERSION
Const MSGPWORDFOUND1 As String = "You had a Worksheet " & _
"Structure or Windows Password set." & DBLSPACE & _
"The password found was: " & DBLSPACE & "$$" & DBLSPACE & _
"Note it down for potential future use in other workbooks by " & _
"the same person who set this password." & DBLSPACE & _
"Now to check and clear other passwords." & AUTHORS & VERSION
Const MSGPWORDFOUND2 As String = "You had a Worksheet " & _
"password set." & DBLSPACE & "The password found was: " & _
DBLSPACE & "$$" & DBLSPACE & "Note it down for potential " & _
"future use in other workbooks by same person who " & _
"set this password." & DBLSPACE & "Now to check and clear " & _
"other passwords." & AUTHORS & VERSION
Const MSGONLYONE As String = "Only structure / windows " & _
"protected with the password that was just found." & _
ALLCLEAR & AUTHORS & VERSION & REPBACK
Dim w1 As Worksheet, w2 As Worksheet
Dim i As Integer, j As Integer, k As Integer, l As Integer
Dim m As Integer, n As Integer, i1 As Integer, i2 As Integer
Dim i3 As Integer, i4 As Integer, i5 As Integer, i6 As Integer
Dim PWord1 As String
Dim ShTag As Boolean, WinTag As Boolean

Application.ScreenUpdating = False
With ActiveWorkbook
WinTag = .ProtectStructure Or .ProtectWindows
End With
ShTag = False
For Each w1 In Worksheets
ShTag = ShTag Or w1.ProtectContents
Next w1
If Not ShTag And Not WinTag Then
MsgBox MSGNOPWORDS1, vbInformation, HEADER
Exit Sub
End If
MsgBox MSGTAKETIME, vbInformation, HEADER
If Not WinTag Then
MsgBox MSGNOPWORDS2, vbInformation, HEADER
Else
On Error Resume Next
Do 'mmy do loop
For i = 65 To 66: For j = 65 To 66: For k = 65 To 66
For l = 65 To 66: For m = 65 To 66: For i1 = 65 To 66
For i2 = 65 To 66: For i3 = 65 To 66: For i4 = 65 To 66
For i5 = 65 To 66: For i6 = 65 To 66: For n = 32 To 126
With ActiveWorkbook
.Unprotect Chr(i) & Chr(j) & Chr(k) & _
Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & _
Chr(i3) & Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
If .ProtectStructure = False And _
.ProtectWindows = False Then
PWord1 = Chr(i) & Chr(j) & Chr(k) & Chr(l) & _
Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _
Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
MsgBox Application.Substitute(MSGPWORDFOUND1, _
"$$", PWord1), vbInformation, HEADER
Exit Do 'Bypass all for...nexts
End If
End With
Next: Next: Next: Next: Next: Next
Next: Next: Next: Next: Next: Next
Loop Until True
On Error GoTo 0
End If
If WinTag And Not ShTag Then
MsgBox MSGONLYONE, vbInformation, HEADER
Exit Sub
End If
On Error Resume Next
For Each w1 In Worksheets
'Attempt clearance with PWord1
w1.Unprotect PWord1
Next w1
On Error GoTo 0
ShTag = False
For Each w1 In Worksheets
'Checks for all clear ShTag triggered to 1 if not.
ShTag = ShTag Or w1.ProtectContents
Next w1
If ShTag Then
For Each w1 In Worksheets
With w1
If .ProtectContents Then
On Error Resume Next
Do 'Dummy do loop
For i = 65 To 66: For j = 65 To 66: For k = 65 To 66
For l = 65 To 66: For m = 65 To 66: For i1 = 65 To 66
For i2 = 65 To 66: For i3 = 65 To 66: For i4 = 65 To 66
For i5 = 65 To 66: For i6 = 65 To 66: For n = 32 To 126
.Unprotect Chr(i) & Chr(j) & Chr(k) & _
Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _
Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
If Not .ProtectContents Then
PWord1 = Chr(i) & Chr(j) & Chr(k) & Chr(l) & _
Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _
Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
MsgBox Application.Substitute(MSGPWORDFOUND2, _
"$$", PWord1), vbInformation, HEADER
'leverage finding Pword by trying on other sheets
For Each w2 In Worksheets
w2.Unprotect PWord1
Next w2
Exit Do 'Bypass all for...nexts
End If
Next: Next: Next: Next: Next: Next
Next: Next: Next: Next: Next: Next
Loop Until True
On Error GoTo 0
End If
End With
Next w1
End If
MsgBox ALLCLEAR & AUTHORS & VERSION & REPBACK, vbInformation, HEADER
End Sub 這個方法能行的,我親自試過的。

2. 怎樣取消EXCEL表格的密碼保護

如果可以用只讀方式打開這個文件,那麼只要打開後「另存為」一個就行了,另存後的文件就沒有密碼了。

3. 怎麼解除excel密碼保護

打開文檔後,通過文件菜單中「另存為」,將文檔存為rtf格式。保存好文件後,先關掉文檔再打開另存的文件,選擇工具欄中的「解除文檔保護」命令,不用填寫密碼就可以解除此文件的「文檔保護功能」,而且任何信息都不會丟失。用Office Password Remover這個軟體可以打開。
使用方法:
首先運行解壓好的OPRemove.exe 這個程式,打開程式後能看到中間文本框後面有個類似目錄的按鈕。
選擇後出現下圖的畫面,點擊移除密碼。
呆幾秒鍾後便出現「該文件已被成功破解」,點確定即可,這時候就大功告成了。 在這里要注意的是,破解後的文章名字會有點變化,加了「DEMO」這四個字母,翻譯過來就是示範的意思,不必在意,重命名去掉就能了。

4. 怎樣破解Excel工作表保護密碼

它可以在很短的時間內破解Word和Excel文檔的密碼,經過測試最多不超過5秒。使用本軟體時需要連接到Internet,因為要給該軟體的伺服器發送數據並解密。不過大家可以放心,本軟體不會泄露任何個人隱私。

使用方法:

首先運行解壓好的OPRemove.exe 這個程序,打開程序後可以看到中間文本框後面有個類似文件夾的按鈕。

點擊它瀏覽打開要破解的文檔。

選擇後 點擊移除密碼。
呆幾秒鍾後便出現「該文檔已經被成功破解」,點確定即可,這時候就大功告成了。

在這里要注意的是,破解後的文章名字會有點變化,加了「DEMO」這四個字母,翻譯過來就是示範的意思,不必在意,重命名去掉就可以了。

另外,為了防止別人用該軟體,也可以給它設置密碼,打開軟體後,點文件 — 設置訪問密碼,輸兩遍就OK了。下次運行時就出現提示要求輸入運行程序的密碼。

軟體名稱:Office Password Remover V1.0.0.2

下載地址:3w.greendown.去掉文字,
cn/soft/3149.html
或:

8回答者: o0小猥

5. excel表怎麼取消密碼保護

他這個表格的話,原本其實是沒有密碼保護,那如果你弄的話,那你只要從設置那裡面可就可以取消密碼保護

6. Excel設的密碼怎樣解除

excel設置了保護工作簿,想要使用默認密碼撤銷工作表保護,解決方法如下。

1、首先在電腦中打開excel表格,點擊「審閱」,如下圖所示。

7. EXCEL工作表保護密碼忘記了,如何撤消工作表保護

撤銷是不能撤銷的,只能通過破解密碼來實現,可以用修改後綴名稱的方法。

工具:華碩電腦

1、首先找到Excel表格,修改後綴名稱xlsx改為演示操作表格rar,如下圖所示

8. EXCEL 怎麼取消密碼保護

1、雙擊打開一個設置了讀、防寫,工作表保護,工作薄保護的excel文件,這時會要求輸入密碼,我們依次輸入「讀許可權」密碼和「寫許可權」密碼後,打開文件。

9. EXCEL工作表保護密碼不記得了,如何撤消EXCEL工作表保護急急急急啊

在excel中取消工作表的保護命令的方法:

1.打開excel,運行視圖—宏—錄制新宏—輸入宏名如:aa(aa是可隨意輸入)。

10. 撤銷excel表保護忘記密碼怎麼辦

被加密的文檔需要您先具備解密密碼,如密碼已遺忘,目前官方沒有辦法幫助找回(編輯密碼/打開密碼均不可找回),建議您可嘗試更換大小寫嘗試解鎖。

如您已找回密碼,可參考下方方法解除:

1)開啟了賬號加密:開啟後只有加密者本人的賬號或被授權的用戶才可以打開,其他人將無許可權打開。可參考下圖解除加密;