EXCEL表格忘記密碼如何解決?EXCEL表格清除密碼方法(excel表格忘記了密碼怎么辦)

      網(wǎng)友投稿 943 2025-04-02

      EXCEL表格忘記密碼如何解決?EXCEL表格清除密碼方法(excel表格忘記了密碼怎么辦)

      EXCEL表格在日常的辦公中經(jīng)常會(huì)使用到,并且平時(shí)如果有制作一些重要的數(shù)據(jù)我們都會(huì)給它加上密碼來保護(hù)數(shù)據(jù)。但是設(shè)置了密碼時(shí)間久之后忘記了,這是很多朋友出現(xiàn)的情況。因此我們可以選擇EXCEL表格清除密碼方法來解決。

      1、打開EXCEL表格,選擇視圖,宏,錄制新宏,新建一個(gè)宏;

      2、先生成一個(gè)空的宏;

      3、編輯這個(gè)宏,選中剛新建的宏后點(diǎn)擊編輯按鈕;

      4、刪除窗口所有字符,把下面的內(nèi)容粘貼進(jìn)入。一個(gè)字母、標(biāo)點(diǎn)符號(hào)都不能少不能錯(cuò)。

      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

      EXCEL表格忘記密碼如何解決?EXCEL表格清除密碼方法(excel表格忘記了密碼怎么辦)

      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、關(guān)閉掉編輯窗口

      6、在宏里選中AllInternalPasswords這個(gè)編輯好的宏,執(zhí)行,并且確定數(shù)次,就OK了。

      版權(quán)聲明:本文內(nèi)容由網(wǎng)絡(luò)用戶投稿,版權(quán)歸原作者所有,本站不擁有其著作權(quán),亦不承擔(dān)相應(yīng)法律責(zé)任。如果您發(fā)現(xiàn)本站中有涉嫌抄襲或描述失實(shí)的內(nèi)容,請(qǐng)聯(lián)系我們jiasou666@gmail.com 處理,核實(shí)后本網(wǎng)站將在24小時(shí)內(nèi)刪除侵權(quán)內(nèi)容。

      版權(quán)聲明:本文內(nèi)容由網(wǎng)絡(luò)用戶投稿,版權(quán)歸原作者所有,本站不擁有其著作權(quán),亦不承擔(dān)相應(yīng)法律責(zé)任。如果您發(fā)現(xiàn)本站中有涉嫌抄襲或描述失實(shí)的內(nèi)容,請(qǐng)聯(lián)系我們jiasou666@gmail.com 處理,核實(shí)后本網(wǎng)站將在24小時(shí)內(nèi)刪除侵權(quán)內(nèi)容。

      上一篇:excel怎么把數(shù)字變成文本(excel怎樣將數(shù)字變?yōu)槲谋荆?/a>
      下一篇:剪貼板在哪?(win7剪貼板在哪)
      相關(guān)文章
      亚洲精品偷拍视频免费观看 | 亚洲理论片在线中文字幕| 亚洲欧洲精品成人久久曰影片| 亚洲另类无码专区首页| 亚洲综合一区二区精品久久| 亚洲国产精品不卡在线电影| 亚洲AV午夜成人片| 久久综合日韩亚洲精品色| 亚洲理论电影在线观看| 亚洲热妇无码AV在线播放| 亚洲乱亚洲乱妇无码麻豆| 亚洲欧洲日产国码av系列天堂| 国产成人精品亚洲精品| 国产成人亚洲精品影院| 中文亚洲成a人片在线观看| 国内精品99亚洲免费高清| 亚洲中文字幕久久精品无码APP | 亚洲成人黄色在线| 亚洲小说图片视频| 2017亚洲男人天堂一| 亚洲AV日韩综合一区尤物| 亚洲人成网站在线播放2019| 亚洲精品无码专区| 亚洲成av人片在线观看天堂无码 | 亚洲网址在线观看你懂的| 亚洲综合一区二区精品久久| 亚洲人妖女同在线播放| 亚洲国产情侣一区二区三区| 亚洲一区在线视频| 亚洲码欧美码一区二区三区| 国产尤物在线视精品在亚洲| 亚洲精品乱码久久久久久不卡| 国产成人高清亚洲| 久久青青成人亚洲精品| 亚洲精品人成电影网| 亚洲入口无毒网址你懂的| 亚洲avav天堂av在线网毛片| 亚洲国产日韩成人综合天堂| 亚洲中久无码永久在线观看同| 亚洲AV无码不卡在线播放| 亚洲成aⅴ人在线观看|