乔山办公网我们一直在努力
您的位置:乔山办公网 > excel表格制作 > excel表格打开设置密码了 可是现在忘了密码怎么办-excel文档忘记密码,excel忘记密码怎样找回

excel表格打开设置密码了 可是现在忘了密码怎么办-excel文档忘记密码,excel忘记密码怎样找回

作者:乔山办公网日期:

返回目录:excel表格制作


你好
(1)EXCEL文件的加密:
先来看看如何针对EXCEL文件进行加密,首先打开要加密的EXCEL文件,然后选择菜单的“文件”->“另存为”,在打开的“另存为”窗口中选择右上角的“工具”->“WEB选项”。

之后就会自动弹出一个窗口,里面包括了对打开权限密码以及修改权限密码的设置选项,添加对应密码后确定即7a64e78988e69d83362可。

和WORD文档加密一样需要确认输入的密码,确认后关闭保存窗口。

这样每次打开该EXCEL文件后都会首先弹出打开密码输入对话框,只有输入正确的密码才能够查看里面的内容。通过以上几步完成了对EXCEL文档的加密工作。那么excel密码破解方法有哪些呢?

(2)EXCEL文档密码破解不求人:
根据提供的消息资料,就能了解到excel密码破解方法。和之前的操作一样通过Office password Recovery Toolbox打开要破解密码的文件,然后选择要破解的密码类型,点REMOVE按钮完成操作。

软件发送找到的EXCEL文件加密KEY信息,找到后发送到rixler software server服务器进行在线破解。

等待一段时间后弹出“the document has been successfully decrypted”提示后说明这个文件已经被成功破解掉了密码,点“确定”关闭软件。

之后会看到新建立的XXX(DEMO).xls文件,这个就是破解后没有打开密码以及修改密码限制的EXCEL文件,打开该文件可以看到与之前加密EXCEL文件一样的内容,输入信息也都是可
满意请采纳


1、打开文件
2、工具---宏----录制新宏---输入名字如:aa
3、停止录制(这样得到一个空宏)
4、工具---宏----宏,选aa,点编辑按钮
5、删除窗口中的所有字符(只有几个),替换为下面的内容:(复制吧)
6、关闭编辑窗口
7、工具---宏-----宏,选AllInternalPasswords,运行,顺序点击确定,OK,没有密码了!!
代码内容(请复制替e799bee5baa6e997aee7ad94e4b893e5b19e361换)
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 '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
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

闪电般的破解 5秒斩杀Word文档密码 为Word文档加密本来无可厚非,但如果过段时间忘记了密码怎么办?虽然网络上充斥着各种破解软件,但它们无一例外的采用暴力破解方式,耗费时间长并且成功率低。我们今天将采用一种特殊的方法,在几秒内解除Word中的密码,让你的宝贵资料“失而复得”。 一、破解Word密码不是梦 其实我们利用的也是一款软件——Word Password Recovery Master(下载地址: /netfriends/0613/WPasRec.rar),解压缩软件后不必安装,直接运行WPasRec.exe,软件的使用方法更是简单,通过浏览按钮指定已经加密的Word文档,然后软件会自动识别该文档具备何种密码(如图1),此时相应的“Remove”按钮即可解除对应的密码。完成后会弹出如图2所示信息,整个过程非常快,但在破解中必须保证电脑已经连接到网络。 最后会在加密文档的同级目录下生成一个新文件,以“demo”标注,再次打开这个文件,或者点软件界面的“Open document in Microsoft Word”直接打开破解后的文档。在破解使用了10位密码加密并且文档容量在250KB的过程中只耗费了不到5秒种(图2)。 在破解过程中必须连接到网络,如果出现错误对话框可能是由于网络不稳定造e79fa5e98193e58685e5aeb9364成的,最好尝试重新破解。 二、Excel也别跑 Office Password Remover也是一款破解软件,它不但能解除Word密码,还可以破解Excel密码(下载地址: /netfriends/0613/OPRemovba.rar)。首先保证要破解的文件没被占用,然后指定加密文件进行破解(如图3),速度同样很快,但必须连接到网络。虽然这款软件也可以破解Word密码,但笔者还是推荐使用Word Password Recovery Master,因为经过测试它连接服务器相对更稳定。 用了这两款软件,再保密的Word(Excel)文件也能恢复回来,对付应急情况很管用。

相关阅读

关键词不能为空
极力推荐

ppt怎么做_excel表格制作_office365_word文档_365办公网