EXCEL工作表保护密码忘记了,如何撤消工作表保护?

作者&投稿:应雨 (若有异议请与网页底部的电邮联系)
EXCEL工作表保护密码忘记了,如何撤消工作表保护?~

在excel中取消工作表的保护命令的方法:
1.打开excel,运行视图—宏—录制新宏—输入宏名如:aa(aa是可随意输入)。


2.停止录制,这样得到一个空宏。

3.同样视图—宏—查看宏—选aa(aa为之前新建的宏)—点击编辑按钮。




4.删除窗口中的所有字符,复制下面的内容粘贴。
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.关闭编辑窗口。
6.视图—宏—查看宏,选AllInternalPasswords,点击执行,确定两次,等2分钟,再确定。密码撤销完毕。





工具:excel2011
1、先打开保护密码的Excel工作表格,如图所示,修改后缀名称为.rar。

2、然后用压缩文件打开,如图所示,并找压缩的路径。

3、压缩文件找到.xml后缀的文件,直接拖拽出来,重新修改。

4、找到这个.xml文件打开,在文字里面搜索protection,把从的代码所有的删除掉。

5、然后再把刚才的.xml文件,如图所示,选择直接拖到压缩的工作表中两者开始替换掉。

6、再重新修改后缀为.xlsx,这个时候就可以打开Excel表格,就没有了密码保护。

7、可以看到直接进入了,需要重新密保的,直接在审阅选项下对工作表重新进行保护即可。

撤销是不能撤销的,只能通过破解密码来实现,可以用修改后缀名称的方法。

工具:华硕电脑

1、首先找到Excel表格,修改后缀名称xlsx改为演示操作表格rar,如下图所示

2、然后用压缩文件打开,然后打开xl,如下图所示

3、然后把压缩文件里面找到的sheet1.xml文件,然后拖拽出来,然后要进行修改,如下图所示

4、然后sheet1.xml文件打开用记事本打开,然后搜索protection,把图中的这一段代码,全部删除掉,如下图所示。

5、再把修改后的sheet1.xml文件,选择拖拽到压缩的工作蒲中,选择替换掉就可以,如下图所示。

6、把文件名称.rar重新更改.xlsx,然后再打开工作表保护就撤销了,如下图所示。



Excel工作表密码去除,破解



按下面步骤操作,
如果不会发邮件给我吧 SOUP5257@126.COM

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


excel表格被保护了怎么办
1、使用密码解除保护:点击Excel表格左上角的“审阅”选项卡,找到“撤销工作表保护”选项,输入正确的密码,即可解除保护。2、使用宏命令解除保护:如果知道Excel文件的密码,可以使用VBA宏命令来解除保护。打开Excel文件,按下Alt+F11键打开VBA编辑器,在代码窗口中输入以下代码:Application.UnprotectSheet (...

excel表格设置了保护怎么修改啊
1.首先打开Excel,打开自己需要的表格,可以看到这份表格已经被保护了。无法进行更改的操作。2.此时我们无法进行某些操作,上方的很多选项都是灰色的,无法修改。3.下面我们需要点击上方工具栏中的“审阅”。4.接着可以看到右侧有“撤销工作表保护”的选项,我们点击一下。5.最后输入我们保护表格时设置的密...

excel如何取消工作表保护?
Excel工作表保护是为了防止对表格进行未经授权的修改而设置的一种功能。当工作表被保护时,用户将无法更改单元格内容、调整格式或执行其他某些操作,除非输入正确的密码以取消保护。取消工作表保护的步骤如下:1. 打开Excel工作簿,并确保处于要取消保护的工作表界面。在工作表的菜单栏上方,找到并点击&ldquo...

Excel常用技巧:[1]如何保护工作表和取消保护
首先打开一个工作样表作为例子。如图所示:在工具栏中切换到审阅标签下。如图所示:点击保护工作表按钮。如图所示:勾选保护工作表及锁定的单元格内容。如图所示:如果有需要可以设定取消工作表保护时使用的密码来增加安全行。如图所示:点击确定后工作表被保护,无法进行编辑。如图所示:解除保护工作表方法:...

excel怎么锁定保护工作表
随便选择一个excel表格,双击打开。打开后,选中需要锁定保护的内容区域。在一级菜单栏下,选择审阅,可以看到有锁定单元格的按钮,点击则可以锁定。再将身高、体重对应的两个数值单元格取消锁定,以防止接下来的保护使得不呢从下拉框中取值,导致数值固定无法选择。然后再选择旁边的保护工作表,输入保护密码...

如何取消excel保护工作表?
1.首先打开excel文档,切换到【审阅】选项卡,单击【更改】组中“保护工作簿”。2..弹出【撤消工作薄保护】对话框,在【密码】文本框中输入“1234”,然后单击确定按钮即可。二.如何撤销对整个工作簿的保护 1.单击【文件】, 在弹出的下拉菜单中选择【另存为】菜单项 2.点击【浏览】,弹出【另存为】...

excel保护工作表在哪个选项卡
Excel保护工作表在“审阅”选项卡中的“保护工作表”功能按钮。使用该功能可以防止未经授权的编辑和修改工作表中的数据。需要注意的是,保护工作表只能防止他人通过直接编辑工作表进行修改,不能防止通过程序或代码进行的数据盗取或篡改。因此,在保护工作表的同时,还应该采取其他安全措施,如加密数据、使用强...

Excel中工作表被保护了怎么办啊?
如果您的Excel工作表已设置了工作表保护,并且您忘记了密码,可以尝试以下方法:1. 使用另一个工作表 如果您有一个未受保护的工作表,可以将其复制到已受保护的工作表上。然后,删除已受保护的工作表上的所有单元格保护代码。最后,将复制的工作表删除。2. 使用另一个应用程序 如果您在另一个应用...

在Excel表格中怎么设置保护部分工作表
1. 首先打开电脑上的Excel表格,进入编辑页面后,按键盘上的Ctrl+1组合键,在弹出的设置单元格格式窗口中,切换到上方的保护选项下。2. 然后在打开的保护页面,将左上方两个选项的勾选,全部取消。3. 接下来,将需要保护的数据选中,同样的方法,在弹出的保护窗口中,勾选上锁定选项,点击确定。4. ...

怎么在Excel表格中以保护工作表的方式给数据设置保护
1. 首先打开电脑上想要设置保护的Excel表格 2. 在打开的页面,点击左上角的三角符号,进行全选。3. 接下来,点击上方的【开始】菜单,在打开的开始选项下,找到【数字】组。4. 在【数字】组中点击【常规】的下拉列表,在打开的菜单中,选择【其他数字格式】选项。5. 如图,弹出【设置单元格格式】的...

吴起县19415081192: Excel表中的"保护工作表"密码忘了怎么办? -
佐史美洛: 打开工作簿后,选择“文件”--“另存为”.

吴起县19415081192: EXCEL表格设置了密码,后来忘记密码了,要怎么样才能打开 -
佐史美洛: 消除工作表的保护查看是不是有被隐藏的工作表,若菜单中有“格式→工作表→取消隐藏”项,则可通过此项取消隐藏的工作表.如果在菜单中也没有有效的“取消隐藏”项,依然可能有被隐藏的工作表,这时候我们可以任选1工作表右击,在...

吴起县19415081192: excel表格设置了密码忘记了怎么办 -
佐史美洛: 有两种方法可以解决:方法1:使用密码破解程序破解.以下为具体方法:1\打开文件 2\工具---宏----录制新宏---输入名字如:aa 3\停止录制(这样得到一个空宏) 4\工具---宏----宏,选aa,点编辑按钮 5\删除窗口中的所有字符(只有几个),替换...

吴起县19415081192: Excel表格密码忘了,怎么办? -
佐史美洛: 如果是Excel"表格"密码忘了,可以新建一个工作表,复制其数据到新表中即可 如果是Excel"文件"密码忘了,只能用office 密码破解软件(如:AOPR)去处理 office 密码破解软件有: 1、Advanced Office Password Recovery V3.02_汉化绿色特别版 2、AOPR

吴起县19415081192: excel表格打开设置密码了 可是现在忘了密码怎么办?谁能帮我解开然后发我? -
佐史美洛: 只有两种情况下可以帮你快速解密,一是你有密码的相关情况,比如纯字母,纯数字,或字母加数字,密码是几位 二是密码本身设置得相当简单,比如是1开始的顺序的数字.否则,破解密码需要好机器破解很久的时间才有可能试出密码.

吴起县19415081192: EXCEL忘记密码怎么办 -
佐史美洛: 工具:office excel 步骤: 1. 打开office excel,试图编辑时,会弹出这样的对话框. 2. 忘记了密码,可以使用宏命令来将密码显示出来,然后输入正确的密码即可.具体操作时,要先将宏命令的相关工具按钮调出来.单击文件——选项——自...

吴起县19415081192: 设置的工作表保护密码忘记了怎么办 -
佐史美洛: 1、首先打开要保护的Excel表格,然后点击上面的“审阅”菜单. 2、在打开的工具栏上点击“保护工作表”图标按钮 3、这时会弹出一个保护工作表的窗口,在这里输入要保护的密码就可以了. 4、如果我们想要修改表格中的数据的话,会弹出一个请先取消保护密码的提示,这样就可以让其它人看到我们的表格,同时又不能修改我们的数据了.

吴起县19415081192: excel设置的密码忘记了怎么办 -
佐史美洛: Excel文件加了密码的文件, 推荐使用使用软件 “Office Password Remover”,这个软件能破解Word、Excel和Access文档密码, 而且速度很快,一般情况下解密过程要要几秒钟就行了.这个软件可以在网上搜索一上, 有很多破解版的可以下载...

吴起县19415081192: excel 密码忘记了,怎么解开 -
佐史美洛: 工具:5秒WORD-EXCEL密码破解.exe 步骤如下: 1、百度“5秒WORD-EXCEL密码破解”,点击下方的连接,下载软件,软件不是很大,直接下载下来就可以了,下载下来是一个压缩包,解压该压缩包.打开压缩包解压出来的文件夹,第二个文件就是我们的密码破解工具,双击打开工具. 2、浏览,找到我们要破解的文件,点击确定,破解就开始啦.点击移除密码. 3、弹出对话框,点击确定,当然,电脑是要能联网的,相信你能看到这篇经验,电脑应该也是能联网的. 4、解密时间要看密码复杂程度,不过应该没有太变态的密码. 5、成功破解密码,并且生成了一个新的没有密码的文件.

吴起县19415081192: excel密码忘记了怎么办 -
佐史美洛: EXCEL密码忘记的解决办法: 1、打开EXCEL,选择视图,宏,录制新宏,新建一个宏,随便取个名字; 2、生成一个空的宏; 3、编辑这个宏,选中刚新建的宏后点击编辑按钮; 4、删除窗口所有字符,附件的内容粘贴进入.一个字母、标点符号都不能少不能错. 5、关闭掉编辑窗口 6、在宏里选中AllInternalPasswords这个编辑好的宏,执行,并且确定数次即可.

本站内容来自于网友发表,不代表本站立场,仅表示其个人看法,不对其真实性、正确性、有效性作任何的担保
相关事宜请发邮件给我们
© 星空见康网