EXCEL表密码忘了,怎么办??
发布网友
发布时间:2022-03-02 11:47
我来回答
共10个回答
热心网友
时间:2022-03-02 13:33
1、打开EXCEL,选择视图,宏,录制新宏,新建一个宏,随便取个名字;
2、生成一个空的宏;
3、编辑这个宏,选中刚新建的宏后点击编辑按钮;
4、删除窗口所有字符,附件的内容粘贴进入。一个字母、标点符号都不能少不能错。
5、关闭掉编辑窗口
6、在宏里选中AllInternalPasswords这个编辑好的宏,执行,并且确定数次即可。
热心网友
时间:2022-03-02 15:07
付费内容限时免费查看回答先找到有工作表保护密码的Excel表格,然后将忘记密码的Excel文件名称后缀由 .xlsx改为 .rar,如果有提示可以忽略,一般不会造成什么影响。
提问然后呢
回答2、用压缩文件打开忘记密码的Excel文件,然后按以下步骤进行操作:xl——worksheets——sheet1.xml(这里是将sheet1工作表设置了保护密码,可根据实际情况选择相应文件名
3、从压缩文件里面找到sheet1.xml文件,然后拖拽至一个方便找到的位置(因为我们要对其要进行修改) 。然后将sheet1.xml文件右击选择用记事本打开方式打开。
4、然后搜索,“protection”,把从这一段代码,全部删除掉。
提问好难呀
回答、然后再把修改后的sheet1.xml文件,选择拖拽到压缩的工作薄中,选择替换掉即可,点击确定
6、最后一步,和第一步相反,把文件名称后缀,由“演示表格.rar”重新更改“演示表格.xlsx”。最后打开Excel表格,你会惊喜地发现是不是保护密码都取消了吧。
提问为什么更换后缀后提示错误,说压缩文件格式未知
回答有解压软件吗
提问有的
回答更改后缀只适用于.xlsx
热心网友
时间:2022-03-02 16:59
1打开文件
2工具---宏----录制新宏---输入名字如:aa
3停止录制(这样得到一个空宏)
4工具---宏----宏,选aa,点编辑按钮
5删除窗口中的所有字符(只有几个),替换为下面的内容:
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
6关闭编辑窗口
7工具---宏-----宏,选AllInternalPasswords,运行,确定两次,等2分钟,再确定.OK,没有密码了!!
热心网友
时间:2022-03-02 19:07
如果您使用的是华为手机,忘记锁屏密码,您可以参考如下方式解决:
1、EMUI 5.0及以上的系统忘记密码,只能通过强制恢复出厂设置清除密码。这个方法会清除您之前的数据,请谨慎操作。
操作步骤:
1) 手机在关机状态、不插USB线的情况下,同时长按音量上键和电源键,直到显示开机logo界面时,松开电源键;
2) 3 秒后再松开音量上键,即可进入 Recovery 模式;
3) 进入后,选择恢复出厂设置。(通过音量键上下移动,开关机键确定)
2、EMUI 5.0以下的系统忘记密码,在确保手机开机、联网、已登录华为账号、已打开“查找我的手机”(手机找回)功能时,可通过“远程锁定”修改密码。
操作步骤:
1) 在电脑上打开华为云空间网址:
2) 选择查找我的手机,此时页面跳转到定位手机页面,在定位到手机后,点击远程锁定;
3) 根据页面提示,输入新的锁屏密码;
4) 锁定成功后,页面上会出现“锁定成功”字样,这时使用新设置的锁屏密码解锁手机即可。
热心网友
时间:2022-03-02 21:31
excel表设置的密码忘了,怎么办,里面的资料很重要,多谢帮忙!
答:1打开文件
2工具---宏----录制新宏---输入名字如:aa
3停止录制(这样得到一个空宏)
4工具---宏----宏,选aa,点编辑按钮
5删除窗口中的所有字符(只有几个),替换为下面的内容:
public
sub
allinternalpasswords()
'
breaks
worksheet
and
workbook
...
热心网友
时间:2022-03-03 00:13
如果是Excel"表格"密码忘了,可以新建一个工作表,复制其数据到新表中即可
如果是Excel"文件"密码忘了,只能用office
密码破解软件(如:AOPR)去处理
office
密码破解软件有:
1、Advanced
Office
Password
Recovery
V3.02_汉化绿色特别版
2、AOPR
热心网友
时间:2022-03-03 03:11
1、打开EXCEL,选择视图,宏,录制新宏,新建一个宏,随便取个名字;
2、生成一个空的宏;
3、编辑这个宏,选中刚新建的宏后点击编辑按钮;
4、删除窗口所有字符,附件的内容粘贴进入。一个字母、标点符号都不能少不能错。
热心网友
时间:2022-03-03 06:42
工作表保护,是不是只是保护了数据,工作表可以打开的吧,
那么复制你的数据到新的工作表。
热心网友
时间:2022-03-03 10:30
Excel密码破解工具
http://www.ouyaoxiazai.com/soft/aqxg/82/4254.html
热心网友
时间:2022-03-03 14:35
用破解工具,请参考
参考资料:http://zhidao.baidu.com/question/27033319.html?si=1
excel表格密码忘记了怎么办
如果忘记了Excel表格的密码,可以尝试一些密码恢复的方法。1. 使用密码找回工具: 目前市面上有很多第三方密码找回工具,如Password Recovery Toolbox等,这些工具能够尝试破解Excel文件的密码。但使用此类工具时,需注意数据安全,确保工具的可靠性,防止数据丢失或损坏。2. 尝试常见密码组合: 如果可能的话...
excel表格锁定了,不记得密码怎么解锁?
如果无法通过回忆找回密码,可以尝试使用专门的软件工具来解除Excel文件的密码保护。例如一些数据恢复或密码破解工具可以帮助你解除Excel表格的锁定状态。这些工具的操作通常需要一定的技术知识,并且存在成功率的问题。请注意,使用这些工具可能存在一定的风险,可能会造成数据丢失或文件损坏,因此使用前请确保备份...
Excel工作表忘记密码怎么办?
如果您的Excel工作表已设置了工作表保护,并且您忘记了密码,可以尝试以下方法:1. 使用另一个工作表 如果您有一个未受保护的工作表,可以将其复制到已受保护的工作表上。然后,删除已受保护的工作表上的所有单元格保护代码。最后,将复制的工作表删除。2. 使用另一个应用程序 如果您在另一个应用程...
...设置密码但密码忘记了要怎么解excel表格的密码设置忘记了密码怎么...
1. 尝试常用密码:如果您通常使用一些常见的密码,可以尝试使用这些密码来解锁Excel表格。2. 使用密码恢复软件:有一些密码恢复软件可以帮助您解锁Excel表格。您可以在互联网上搜索并尝试一些这样的软件,但请注意,使用这些软件存在一定的风险,可能会导致数据丢失或文件损坏,因此请确保备份重要的文件。3. 寻...
excel密码忘了怎么办?
1、使用密码解除保护:点击Excel表格左上角的“审阅”选项卡,找到“撤销工作表保护”选项,输入正确的密码,即可解除保护。2、使用宏命令解除保护:如果知道Excel文件的密码,可以使用VBA宏命令来解除保护。打开Excel文件,按下Alt+F11键打开VBA编辑器,在代码窗口中输入以下代码:Application.UnprotectSheet (...
Excel文件忘记密码怎么办excel文件忘记密码怎么办恢复
1、excel中设置了工作表保护,如果忘记了密码。2、先保存文件,并找到文件,选择后按下f2,将扩展名改为“rar”压缩文件格式。3、并双击用压缩软件打开,双击打开其中的xl文件夹。4、在其中找到“worksheets”文件夹,双击打开。5、找到设置了保护的工作表,选择后点击右键,选择“用记事本打开”。6、在打开...
excel文件密码忘记了怎么办?
第一种:找回excel打开密码 1)下载安装疯师傅excel解密助手 2)选择模式 在电脑上下载疯师傅Excel解密助手,安装后打开,选择“恢复密码”。3)选择Excel文件和破解方法 点击加号按钮,选择一个您想要恢复密码的Excel文件。添加Excel文件后选择一种最适合您的恢复方法,软件为您提供4种方法:组合破解 组合破解...
excel表格文档密码忘记了怎么办(excel表格文件密码忘记了怎么办)
1. 使用密码提示 在设置Excel表格密码时,系统会提示你设置一个密码提示。如果你还记得密码提示的内容,可以尝试使用密码提示来帮助回忆密码。密码提示通常是你自己设置的一个与密码相关联的提示性信息,通过它你可能能够回想起密码。2. 尝试常用密码 如果你没有设置密码提示,可以尝试使用一些常见的密码,...
excel进不去密码忘了如何办
如果您忘记了Excel表的密码,您可以尝试以下几种方法来打开表格:1.使用备份文件:如果您曾经为Excel表创建过备份文件,可以尝试打开备份文件,以避免使用密码。2.使用另存为功能:尝试使用另存为功能将Excel表格另存为一个新的文件,并尝试在新文件中打开。有时这个操作可以去除密码保护。3.使用Excel密码...
excel表格密码忘了怎么解除
当Excel表格的密码被遗忘时,可以通过使用专业的密码恢复工具或者尝试一些常见的密码组合来解除密码保护。1. 使用专业的密码恢复工具:网络上有许多专门用于恢复Excel密码的工具,如Passware Kit、Accent Office Password Recovery等。这些工具使用先进的算法来尝试猜测或暴力破解密码。使用此类工具的优点是它们通常...