如何破解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/166113.html

(0)
常见问题

相关推荐

  • 路由器的灯不亮怎么办

    路由器在正常工作之下时有两盏灯是亮的,其中一盏代表着连接状态的绿灯,长亮;另外一个代表信号指示的红灯,不停的闪烁。而不少网友为无线路由器灯不亮而不知所措,本篇文章就是为大将讲路由器灯不亮怎么办? 工具/原料 测试仪 路由器灯不亮操作步骤 连接指"

    2022年4月27日
    0
  • 双通道网络加速什么意思(图文)

    路由器指南网原创:文章是关于"双通道网络加速什么意思(图文)"的相关知识分享,希望可以帮到大家。 - 素材来源网络 编辑:路由器。 【导读】双通道网络加速什么意思,下面就是路由器指…

    2021年9月4日
    0
  • 迅雷下载提示出错

    路由器指南网原创:文章是关于"迅雷下载提示出错"的相关知识分享,希望可以帮到大家。 - 素材来源网络 编辑:路由器。 用户们在使用迅雷的时候,有些时候会遇到问题,就是在使用迅雷软件…

    2021年7月27日
    0
  • ps如何去色操作

    路由器指南网原创:文章是关于"ps如何去色操作"的相关知识分享,希望可以帮到大家。 - 素材来源网络 编辑:路由器。 我们经常需要使用PS给一些图片去色,让图片拥有老照片的效果。那…

    2021年7月9日
    0
  • 手机连不上wifi是怎么回事?

      手机连不上wifi是怎么回事?  问:手机连不上wifi是怎么回事?手机可以搜索到路由器上的wifi信号,但是连接不上;请问这是怎么回事?有什么办法可以解决?(PS:如果是搜索…

    2021年9月13日
    0
  • 驱动人生dtlsoft不能删解决方法

    路由器指南网原创:文章是关于"驱动人生dtlsoft不能删解决方法"的相关知识分享,希望可以帮到大家。 - 素材来源网络 编辑:路由器。 当用户使用完驱动人生已…

    2021年8月22日
    0
  • 手机不支持5g解决方法(图文)

    路由器指南网原创:文章是关于"手机不支持5g解决方法(图文)"的相关知识分享,希望可以帮到大家。 - 素材来源网络 编辑:路由器。 【导读】手机不支持5g怎么办,下面就是路由器指南…

    2021年7月22日
    0
  • 迅雷卡在99.9不动了解决方法

    路由器指南网原创:文章是关于"迅雷卡在99.9不动了解决方法"的相关知识分享,希望可以帮到大家。 - 素材来源网络 编辑:路由器。 使用迅雷下载文件的用户非常的多,以至于很多的用户…

    2021年8月29日
    0
  • 表格中自适应成绩查询系统使用方法

    路由器指南网原创:文章是关于"表格中自适应成绩查询系统使用方法"的相关知识分享,希望可以帮到大家。 - 素材来源网络 编辑:路由器。 【导读】表格中自适应成绩查询系统相关系统问题,…

    2021年7月29日
    0
  • 二手路由器不知道密码怎么办?

    请问大家:别人用的二手路由器,不知道密码怎么办?答:实际上,并不需要知道二手路由器的密码,对于一台二手的路由器,应该先把它恢复出厂设置,然后打开它的设置页面,重新设置上网参数、重新设置wifi名称和密码,下面进行详细介绍。二手路由器不知道密码设置步骤:1、要让你的二手路由器上网,首先要做的是把

    2021年4月12日
    0