1、工作表写入保护,忘记密码,解决办法:

流程如下:

  1. 1打开文件
    2工具---宏----录制新宏---输入名字如:aa
    3停止录制(这样得到一个空宏)
    4工具---宏----宏,选aa,点编辑按钮
    5删除窗口中的所有字符(只有几个),替换为下面的内容:
  1. Public Sub AllInternalPasswords()
  2. ' Breaks worksheet and workbook structure passwords. Bob McCormick
  3. ' probably originator of base code algorithm modified for coverage
  4. ' of workbook structure / windows passwords and for multiple passwords
  5. '
  6. ' Norman Harker and JE McGimpsey 27-Dec-2002 (Version 1.1)
  7. ' Modified 2003-Apr-04 by JEM: All msgs to constants, and
  8. ' eliminate one Exit Sub (Version 1.1.1)
  9. ' Reveals hashed passwords NOT original passwords
  10. Const DBLSPACE As String = vbNewLine & vbNewLine
  11. Const AUTHORS As String = DBLSPACE & vbNewLine & _
  12. "Adapted from Bob McCormick base code by" & _
  13. "Norman Harker and JE McGimpsey"
  14. Const HEADER As String = "AllInternalPasswords User Message"
  15. Const VERSION As String = DBLSPACE & "Version 1.1.1 2003-Apr-04"
  16. Const REPBACK As String = DBLSPACE & "Please report failure " & _
  17. "to the microsoft.public.excel.programming newsgroup."
  18. Const ALLCLEAR As String = DBLSPACE & "The workbook should " & _
  19. "now be free of all password protection, so make sure you:" & _
  20. DBLSPACE & "SAVE IT NOW!" & DBLSPACE & "and also" & _
  21. DBLSPACE & "BACKUP!, BACKUP!!, BACKUP!!!" & _
  22. DBLSPACE & "Also, remember that the password was " & _
  23. "put there for a reason. Don't stuff up crucial formulas " & _
  24. "or data." & DBLSPACE & "Access and use of some data " & _
  25. "may be an offense. If in doubt, don't."
  26. Const MSGNOPWORDS1 As String = "There were no passwords on " & _
  27. "sheets, or workbook structure or windows." & AUTHORS & VERSION
  28. Const MSGNOPWORDS2 As String = "There was no protection to " & _
  29. "workbook structure or windows." & DBLSPACE & _
  30. "Proceeding to unprotect sheets." & AUTHORS & VERSION
  31. Const MSGTAKETIME As String = "After pressing OK button this " & _
  32. "will take some time." & DBLSPACE & "Amount of time " & _
  33. "depends on how many different passwords, the " & _
  34. "passwords, and your computer's specification." & DBLSPACE & _
  35. "Just be patient! Make me a coffee!" & AUTHORS & VERSION
  36. Const MSGPWORDFOUND1 As String = "You had a Worksheet " & _
  37. "Structure or Windows Password set." & DBLSPACE & _
  38. "The password found was: " & DBLSPACE & "$$" & DBLSPACE & _
  39. "Note it down for potential future use in other workbooks by " & _
  40. "the same person who set this password." & DBLSPACE & _
  41. "Now to check and clear other passwords." & AUTHORS & VERSION
  42. Const MSGPWORDFOUND2 As String = "You had a Worksheet " & _
  43. "password set." & DBLSPACE & "The password found was: " & _
  44. DBLSPACE & "$$" & DBLSPACE & "Note it down for potential " & _
  45. "future use in other workbooks by same person who " & _
  46. "set this password." & DBLSPACE & "Now to check and clear " & _
  47. "other passwords." & AUTHORS & VERSION
  48. Const MSGONLYONE As String = "Only structure / windows " & _
  49. "protected with the password that was just found." & _
  50. ALLCLEAR & AUTHORS & VERSION & REPBACK
  51. Dim w1 As Worksheet, w2 As Worksheet
  52. Dim i As Integer, j As Integer, k As Integer, l As Integer
  53. Dim m As Integer, n As Integer, i1 As Integer, i2 As Integer
  54. Dim i3 As Integer, i4 As Integer, i5 As Integer, i6 As Integer
  55. Dim PWord1 As String
  56. Dim ShTag As Boolean, WinTag As Boolean
  57. Application.ScreenUpdating = False
  58. With ActiveWorkbook
  59. WinTag = .ProtectStructure Or .ProtectWindows
  60. End With
  61. ShTag = False
  62. For Each w1 In Worksheets
  63. ShTag = ShTag Or w1.ProtectContents
  64. Next w1
  65. If Not ShTag And Not WinTag Then
  66. MsgBox MSGNOPWORDS1, vbInformation, HEADER
  67. Exit Sub
  68. End If
  69. MsgBox MSGTAKETIME, vbInformation, HEADER
  70. If Not WinTag Then
  71. MsgBox MSGNOPWORDS2, vbInformation, HEADER
  72. Else
  73. On Error Resume Next
  74. Do 'dummy do loop
  75. For i = To : For j = To : For k = To
  76. For l = To : For m = To : For i1 = To
  77. For i2 = To : For i3 = To : For i4 = To
  78. For i5 = To : For i6 = To : For n = To
  79. With ActiveWorkbook
  80. .Unprotect Chr(i) & Chr(j) & Chr(k) & _
  81. Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & _
  82. Chr(i3) & Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
  83. If .ProtectStructure = False And _
  84. .ProtectWindows = False Then
  85. PWord1 = Chr(i) & Chr(j) & Chr(k) & Chr(l) & _
  86. Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _
  87. Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
  88. MsgBox Application.Substitute(MSGPWORDFOUND1, _
  89. "$$", PWord1), vbInformation, HEADER
  90. Exit Do 'Bypass all for...nexts
  91. End If
  92. End With
  93. Next: Next: Next: Next: Next: Next
  94. Next: Next: Next: Next: Next: Next
  95. Loop Until True
  96. On Error GoTo
  97. End If
  98. If WinTag And Not ShTag Then
  99. MsgBox MSGONLYONE, vbInformation, HEADER
  100. Exit Sub
  101. End If
  102. On Error Resume Next
  103. For Each w1 In Worksheets
  104. 'Attempt clearance with PWord1
  105. w1.Unprotect PWord1
  106. Next w1
  107. On Error GoTo
  108. ShTag = False
  109. For Each w1 In Worksheets
  110. 'Checks for all clear ShTag triggered to 1 if not.
  111. ShTag = ShTag Or w1.ProtectContents
  112. Next w1
  113. If ShTag Then
  114. For Each w1 In Worksheets
  115. With w1
  116. If .ProtectContents Then
  117. On Error Resume Next
  118. Do 'Dummy do loop
  119. For i = To : For j = To : For k = To
  120. For l = To : For m = To : For i1 = To
  121. For i2 = To : For i3 = To : For i4 = To
  122. For i5 = To : For i6 = To : For n = To
  123. .Unprotect Chr(i) & Chr(j) & Chr(k) & _
  124. Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _
  125. Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
  126. If Not .ProtectContents Then
  127. PWord1 = Chr(i) & Chr(j) & Chr(k) & Chr(l) & _
  128. Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _
  129. Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
  130. MsgBox Application.Substitute(MSGPWORDFOUND2, _
  131. "$$", PWord1), vbInformation, HEADER
  132. 'leverage finding Pword by trying on other sheets
  133. For Each w2 In Worksheets
  134. w2.Unprotect PWord1
  135. Next w2
  136. Exit Do 'Bypass all for...nexts
  137. End If
  138. Next: Next: Next: Next: Next: Next
  139. Next: Next: Next: Next: Next: Next
  140. Loop Until True
  141. On Error GoTo
  142. End If
  143. End With
  144. Next w1
  145. End If
  146. MsgBox ALLCLEAR & AUTHORS & VERSION & REPBACK, vbInformation, HEADER
  147. End Sub

或者参考如下内容:

是打开文件需要密码?还是文件打开后设置的修改密码?他们方法不同的,我都用过。(符件中的移除密码,是移除打开文件时需要的密码,无需安装,打开即用,很简单。),如果是能

打开文件,需要取消单元格的修改密码,方法如下:

先打开EXCEL文件,然后点“录制宏”,随便录一下就可以了,然后打开“宏”选“编辑”,将里面的内容全部换成以下文本,然后执行。几分钟后,即可解掉密码。

  1. Option Explicit
  2.  
  3. Public Sub AllInternalPasswords()
  4. ' Breaks worksheet and workbook structure passwords. Bob McCormick
  5. ' probably originator of base code algorithm modified for coverage
  6. ' of workbook structure / windows passwords and for multiple passwords
  7. '
  8. ' Norman Harker and JE McGimpsey 27-Dec-2002 (Version 1.1)
  9. ' Modified 2003-Apr-04 by JEM: All msgs to constants, and
  10. ' eliminate one Exit Sub (Version 1.1.1)
  11. ' Reveals hashed passwords NOT original passwords
  12. Const DBLSPACE As String = vbNewLine & vbNewLine
  13. Const AUTHORS As String = DBLSPACE & vbNewLine & _
  14. "Adapted from Bob McCormick base code by" & _
  15. "Norman Harker and JE McGimpsey"
  16. Const HEADER As String = "AllInternalPasswords User Message"
  17. Const VERSION As String = DBLSPACE & "Version 1.1.1 2003-Apr-04"
  18. Const REPBACK As String = DBLSPACE & "Please report failure " & _
  19. "to the microsoft.public.excel.programming newsgroup."
  20. Const ALLCLEAR As String = DBLSPACE & "The workbook should " & _
  21. "now be free of all password protection, so make sure you:" & _
  22. DBLSPACE & "SAVE IT NOW!" & DBLSPACE & "and also" & _
  23. DBLSPACE & "BACKUP!, BACKUP!!, BACKUP!!!" & _
  24. DBLSPACE & "Also, remember that the password was " & _
  25. "put there for a reason. Don't stuff up crucial formulas " & _
  26. "or data." & DBLSPACE & "Access and use of some data " & _
  27. "may be an offense. If in doubt, don't."
  28. Const MSGNOPWORDS1 As String = "There were no passwords on " & _
  29. "sheets, or workbook structure or windows." & AUTHORS & VERSION
  30. Const MSGNOPWORDS2 As String = "There was no protection to " & _
  31. "workbook structure or windows." & DBLSPACE & _
  32. "Proceeding to unprotect sheets." & AUTHORS & VERSION
  33. Const MSGTAKETIME As String = "After pressing OK button this " & _
  34. "will take some time." & DBLSPACE & "Amount of time " & _
  35. "depends on how many different passwords, the " & _
  36. "passwords, and your computer's specification." & DBLSPACE & _
  37. "Just be patient! Make me a coffee!" & AUTHORS & VERSION
  38. Const MSGPWORDFOUND1 As String = "You had a Worksheet " & _
  39. "Structure or Windows Password set." & DBLSPACE & _
  40. "The password found was: " & DBLSPACE & "$$" & DBLSPACE & _
  41. "Note it down for potential future use in other workbooks by " & _
  42. "the same person who set this password." & DBLSPACE & _
  43. "Now to check and clear other passwords." & AUTHORS & VERSION
  44. Const MSGPWORDFOUND2 As String = "You had a Worksheet " & _
  45. "password set." & DBLSPACE & "The password found was: " & _
  46. DBLSPACE & "$$" & DBLSPACE & "Note it down for potential " & _
  47. "future use in other workbooks by same person who " & _
  48. "set this password." & DBLSPACE & "Now to check and clear " & _
  49. "other passwords." & AUTHORS & VERSION
  50. Const MSGONLYONE As String = "Only structure / windows " & _
  51. "protected with the password that was just found." & _
  52. ALLCLEAR & AUTHORS & VERSION & REPBACK
  53.  
  54. Dim w1 As Worksheet, w2 As Worksheet
  55. Dim i As Integer, j As Integer, k As Integer, l As Integer
  56. Dim m As Integer, n As Integer, i1 As Integer, i2 As Integer
  57. Dim i3 As Integer, i4 As Integer, i5 As Integer, i6 As Integer
  58. Dim PWord1 As String
  59. Dim ShTag As Boolean, WinTag As Boolean
  60.  
  61. Application.ScreenUpdating = False
  62. With ActiveWorkbook
  63. WinTag = .ProtectStructure Or .ProtectWindows
  64. End With
  65. ShTag = False
  66. For Each w1 In Worksheets
  67. ShTag = ShTag Or w1.ProtectContents
  68. Next w1
  69. If Not ShTag And Not WinTag Then
  70. MsgBox MSGNOPWORDS1, vbInformation, HEADER
  71. Exit Sub
  72. End If
  73. MsgBox MSGTAKETIME, vbInformation, HEADER
  74. If Not WinTag Then
  75. MsgBox MSGNOPWORDS2, vbInformation, HEADER
  76. Else
  77. On Error Resume Next
  78. Do 'dummy do loop
  79. For i = To : For j = To : For k = To
  80. For l = To : For m = To : For i1 = To
  81. For i2 = To : For i3 = To : For i4 = To
  82. For i5 = To : For i6 = To : For n = To
  83. With ActiveWorkbook
  84. .Unprotect Chr(i) & Chr(j) & Chr(k) & _
  85. Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & _
  86. Chr(i3) & Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
  87. If .ProtectStructure = False And _
  88. .ProtectWindows = False Then
  89. PWord1 = Chr(i) & Chr(j) & Chr(k) & Chr(l) & _
  90. Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _
  91. Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
  92. MsgBox Application.Substitute(MSGPWORDFOUND1, _
  93. "$$", PWord1), vbInformation, HEADER
  94. Exit Do 'Bypass all for...nexts
  95. End If
  96. End With
  97. Next: Next: Next: Next: Next: Next
  98. Next: Next: Next: Next: Next: Next
  99. Loop Until True
  100. On Error GoTo
  101. End If
  102. If WinTag And Not ShTag Then
  103. MsgBox MSGONLYONE, vbInformation, HEADER
  104. Exit Sub
  105. End If
  106. On Error Resume Next
  107. For Each w1 In Worksheets
  108. 'Attempt clearance with PWord1
  109. w1.Unprotect PWord1
  110. Next w1
  111. On Error GoTo
  112. ShTag = False
  113. For Each w1 In Worksheets
  114. 'Checks for all clear ShTag triggered to 1 if not.
  115. ShTag = ShTag Or w1.ProtectContents
  116. Next w1
  117. If ShTag Then
  118. For Each w1 In Worksheets
  119. With w1
  120. If .ProtectContents Then
  121. On Error Resume Next
  122. Do 'Dummy do loop
  123. For i = To : For j = To : For k = To
  124. For l = To : For m = To : For i1 = To
  125. For i2 = To : For i3 = To : For i4 = To
  126. For i5 = To : For i6 = To : For n = To
  127. .Unprotect Chr(i) & Chr(j) & Chr(k) & _
  128. Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _
  129. Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
  130. If Not .ProtectContents Then
  131. PWord1 = Chr(i) & Chr(j) & Chr(k) & Chr(l) & _
  132. Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _
  133. Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
  134. MsgBox Application.Substitute(MSGPWORDFOUND2, _
  135. "$$", PWord1), vbInformation, HEADER
  136. 'leverage finding Pword by trying on other sheets
  137. For Each w2 In Worksheets
  138. w2.Unprotect PWord1
  139. Next w2
  140. Exit Do 'Bypass all for...nexts
  141. End If
  142. Next: Next: Next: Next: Next: Next
  143. Next: Next: Next: Next: Next: Next
  144. Loop Until True
  145. On Error GoTo
  146. End If
  147. End With
  148. Next w1
  149. End If
  150. MsgBox ALLCLEAR & AUTHORS & VERSION & REPBACK, vbInformation, HEADER
  151. End Sub

读写密码解除

2、office2007怎样添加开发工具选项卡

        开发选项卡添加到工具栏

Microsoft-office 常见问题的更多相关文章

  1. IIS中使用Microsoft.Office.Interop.Excel 常见问题:RPC 服务器不可用。 (异常来自 HRESULT:0x800706BA) 的异常。等

    IIS中使用Microsoft.Office.Interop.Excel 异常1: 检索 COM 类工厂中 CLSID 为 {00024500-0000-0000-C000-000000000046} ...

  2. 介绍 32 位和 64 位版本的 Microsoft Office 2010

    在使用 64 位版本的 Office 2010 运行现有解决方案时存在两个基本问题: Office 2010 中的本机 64 位进程无法加载 32 位二进制文件.在使用现有 Microsoft Act ...

  3. Microsoft Office Specialist (MOS) 认证考试详解---word 2010 部分

    Microsoft Office Specialist ( MOS)认证考试详解 首先是   Microsoft Certification overview http://www.microsoft ...

  4. Microsoft.Office.Interop.Word 创建word

    Microsoft.Office.Interop.Word 创建word 转载:http://www.cnblogs.com/chenbg2001/archive/2010/03/14/1685746 ...

  5. Microsoft.Office.Interop.Excel的用法以及利用Microsoft.Office.Interop.Excel将web页面转成PDF

    1.常见用法           using Microsoft.Office.Interop.Excel; 1)新建一个Excel ApplicationClass ExcelApp = New A ...

  6. 无法将类型为“Microsoft.Office.Interop.Word.ApplicationClass”的 COM 对象强制转换为接口类型“Microsoft.Office.Interop.Word._Application”。

    无法将类型为“Microsoft.Office.Interop.Word.ApplicationClass”的 COM 对象强制转换为接口类型“Microsoft.Office.Interop.Wor ...

  7. 引用Microsoft.Office.Interop.Excel出现的问题

    引用Microsoft.Office.Interop.Excel出现的问题   转自:http://www.hccar.com/Content,2008,6,11,75.aspx,作者:方继祥 操作背 ...

  8. 超简单的激活Microsoft Office 2016 for Mac 方法

    1.简介: 2016年9月14日更新本博客,激活工具同样适用于Office 15.25(160817)版本.我此前在国外网站上找到一个App,下载之后运行,直接点击一个黑色开锁的标识按钮,输入系统密码 ...

  9. 安装InfoPath 2013后 SharePoint 2010 出现 “找不到 Microsoft.Office.InfoPath, Version=14.0.0....” 的错误的解决方案

    1. 症状 您的SharePoint 2010的服务器是不是最近一直出现这个错误呢? Could not load file or assembly 'Microsoft.Office.InfoPat ...

  10. Microsoft.Office.Interop.Excel操作Excel文件时出现的问题及解决方案

    问题描述: Microsoft.Office.Interop.Excel.Worksheet 打不开文件 Microsoft Office Excel 不能访问文件"a.xls". ...

随机推荐

  1. echarts源码中关于 判断平台的有用代码

    function detect(ua) { var os = {}; var browser = {}; // var webkit = ua.match(/Web[kK]it[\/]{0,1}([\ ...

  2. mariadb中执行数据库脚本的方法

    为了项目需求,写如下sql数据库脚本: SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for ...

  3. Python 文本(txt) 转换成 EXCEL(xls)

    #!/bin/env python # -*- encoding: utf-8 -*- #------------------------------------------------------- ...

  4. android studio 使用问题总结一

    1,Theme.AppCompat.Light.DarkActionBar 报错 添加v7包 参考其他:http://blog.csdn.net/sanjiaozhen/article/details ...

  5. LeetCode OJ-- Longest Common Prefix

    https://oj.leetcode.com/problems/longest-common-prefix/ 在多个string的集合中,找出所有string的最长公共前缀. 从头开始 index ...

  6. 转载:html+js实现只允许输入两位小数的输入框

    JS代码: <script language="JavaScript" type="text/javascript"> function clear ...

  7. hibernate中SQL包含冒号

    当前负责的项目使用的是hibernate,而“:”是hibernate的一个占位符,作为预编译使用的, select tmp.pid from (select pid, loginTime, @i : ...

  8. luogu P1314 聪明的质监员

    题目描述 小T 是一名质量监督员,最近负责检验一批矿产的质量.这批矿产共有 n 个矿石,从 1到n 逐一编号,每个矿石都有自己的重量 wi 以及价值vi .检验矿产的流程是: 1 .给定m 个区间[L ...

  9. 洛谷 P3359 改造异或树

    题目描述 给定一棵n 个点的树,每条边上都有一个权值.现在按顺序删掉所有的n-1条边,每删掉一条边询问当前有多少条路径满足路径上所有边权值异或和为0. 输入输出格式 输入格式: 第一行一个整数n. 接 ...

  10. 如何让你的网页加载时间降低到 1s 内

    当初分析了定宽高值和定宽高比这两种常见的图片延迟加载场景,也介绍了他们的应对方案,还做了一点技术选型的工作. 经过一段时间的项目实践,在先前方案的基础上又做了很多深入的优化工作.最终将好奇心日报的网页 ...