如何破解EXCEL工作表保护密码忘记密码怎么办

路由器网投稿:文章是关于”如何破解EXCEL工作表保护密码忘记密码怎么办”的相关知识分享,希望可以帮到大家。 – 素材来源网络 编辑:小易。

如何破解EXCEL工作表保护密码忘记密码怎么办

EXCEL工作表保护密码忘记密码怎么办,快速学起来

操作方法01

新建一个EXCEL工作表,而后点击另存为,讲表格保存为启用宏的工作表

如何破解EXCEL工作表保护密码忘记密码怎么办02

一次点击开发工具—录制新宏,在弹出的对话框内修改宏名称而后确定

如何破解EXCEL工作表保护密码忘记密码怎么办03

依次点击开发工具—-停止录制宏,宏录制完成

如何破解EXCEL工作表保护密码忘记密码怎么办04

依次点击开发工具,—宏—-在弹出的对话框找到我们刚才录制的宏名称而后进入VBA界面

如何破解EXCEL工作表保护密码忘记密码怎么办05

在VBA界面,全选里面的代码,而后删除,讲里面的代码全部删除完

如何破解EXCEL工作表保护密码忘记密码怎么办06

代码复制到VBA编辑窗口内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 passwordsConst DBLSPACE As String = vbNewLine & vbNewLineConst 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 & VERSIONConst MSGNOPWORDS2 As String = "There was no protection to " & _"workbook structure or windows." & DBLSPACE & _"Proceeding to unprotect sheets." & AUTHORS & VERSIONConst 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 & VERSIONConst 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 & VERSIONConst 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 & VERSIONConst MSGONLYONE As String = "Only structure / windows " & _"protected with the password that was just found." & _ALLCLEAR & AUTHORS & VERSION & REPBACKDim w1 As Worksheet, w2 As WorksheetDim i As Integer, j As Integer, k As Integer, l As IntegerDim m As Integer, n As Integer, i1 As Integer, i2 As IntegerDim i3 As Integer, i4 As Integer, i5 As Integer, i6 As IntegerDim PWord1 As StringDim ShTag As Boolean, WinTag As BooleanApplication.ScreenUpdating = FalseWith ActiveWorkbookWinTag = .ProtectStructure Or .ProtectWindowsEnd WithShTag = FalseFor Each w1 In WorksheetsShTag = ShTag Or w1.ProtectContentsNext w1If Not ShTag And Not WinTag ThenMsgBox MSGNOPWORDS1, vbInformation, HEADERExit SubEnd IfMsgBox MSGTAKETIME, vbInformation, HEADERIf Not WinTag ThenMsgBox MSGNOPWORDS2, vbInformation, HEADERElseOn Error Resume NextDo 'dummy do loopFor i = 65 To 66: For j = 65 To 66: For k = 65 To 66For l = 65 To 66: For m = 65 To 66: For i1 = 65 To 66For i2 = 65 To 66: For i3 = 65 To 66: For i4 = 65 To 66For i5 = 65 To 66: For i6 = 65 To 66: For n = 32 To 126With 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 ThenPWord1 = 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, HEADERExit Do 'Bypass all for…nextsEnd IfEnd WithNext: Next: Next: Next: Next: NextNext: Next: Next: Next: Next: NextLoop Until TrueOn Error GoTo 0End IfIf WinTag And Not ShTag ThenMsgBox MSGONLYONE, vbInformation, HEADERExit SubEnd IfOn Error Resume NextFor Each w1 In Worksheets'Attempt clearance with PWord1w1.Unprotect PWord1Next w1On Error GoTo 0ShTag = FalseFor Each w1 In Worksheets'Checks for all clear ShTag triggered to 1 if not.ShTag = ShTag Or w1.ProtectContentsNext w1If ShTag ThenFor Each w1 In WorksheetsWith w1If .ProtectContents ThenOn Error Resume NextDo 'Dummy do loopFor i = 65 To 66: For j = 65 To 66: For k = 65 To 66For l = 65 To 66: For m = 65 To 66: For i1 = 65 To 66For i2 = 65 To 66: For i3 = 65 To 66: For i4 = 65 To 66For 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 ThenPWord1 = 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 sheetsFor Each w2 In Worksheetsw2.Unprotect PWord1Next w2Exit Do 'Bypass all for…nextsEnd IfNext: Next: Next: Next: Next: NextNext: Next: Next: Next: Next: NextLoop Until TrueOn Error GoTo 0End IfEnd WithNext w1End IfMsgBox ALLCLEAR & AUTHORS & VERSION & REPBACK, vbInformation, HEADEREnd Sub点击保存

如何破解EXCEL工作表保护密码忘记密码怎么办07

点击开发工具,宏,找到我们刚才录制的宏,点击执行宏

如何破解EXCEL工作表保护密码忘记密码怎么办08

而后,在弹出的所有对话框上,都点击确定,都确定,1分钟后,就可以编辑了

如何破解EXCEL工作表保护密码忘记密码怎么办特别提示

本方法仅适用于2007-2016版本

以上就是关于“如何破解EXCEL工作表保护密码忘记密码怎么办”希望能帮助到你!

本文来自投稿,不代表路由百科立场,如若转载,请注明出处:https://www.qh4321.com/186128.html

(0)

相关推荐

  • 电脑开机后桌面黑屏不显示怎么办

    路由器网投稿:文章是关于”电脑开机后桌面黑屏不显示怎么办”的相关知识分享,希望可以帮到大家。 – 素材来源网络 编辑:小易。 电脑开机后桌面黑屏…

    2022年6月27日
    0
  • 升级Win10后office用不了的解决方法(图)

    原标题:”升级Win10后office用不了的解决方法”相关电脑问题教程分享。 – 来源:路由器之家。大家都知道,办公软件是我们工作生活必不可少的一款软件,但是最近很多用户升级win10的系统之后,

    2021年8月21日
    0
  • win10如何显示我的电脑在桌面

    路由器网投稿:文章是关于”win10如何显示我的电脑在桌面”的相关知识分享,希望可以帮到大家。 – 素材来源网络 编辑:小易。 Windows …

    2022年8月21日
    0
  • 怎么删监控录像

    路由器网投稿:文章是关于”怎么删监控录像”的相关知识分享,希望可以帮到大家。 – 素材来源网络 编辑:小易。 操作方法01 监控录像分为嵌入式硬…

    2022年6月27日
    0
  • 路由器2个灯亮解决方法(图文)

    【导读】路由器2个灯亮解决方法,下面就是路由器之家整理的网络知识百科,来看看吧!大家好,我是191路由器网小编,上述问题将由我为大家讲解。路由器2个灯亮与路由器工作状态和开启的功能有关,只有两个状态

    2021年6月22日
    0
  • U盘无法复制过大文件解决方法

    原标题:”U盘无法复制过大文件的原因及解决妙招”相关电脑问题教程分享。 – 来源:路由器之家。我们通常情况下,用U盘来复制拷贝一些文件,一个8G的U盘,复制5G的文件时,却提示“复制文件

    2021年6月24日
    0