当前位置: 首页 > news >正文

慈溪市建设厅网站googleseo优化

慈溪市建设厅网站,googleseo优化,做网站banner图,100个有趣的网站文章目录 1.前言2.破解步骤3. 最终效果4.参考文献 1.前言 有时候别人发来的Excel中有些表格不能编辑,提示如下,但是又不知道原始密码 2.破解步骤 1、打开您需要破解保护密码的Excel文件; 2、依次点击菜单栏上的视图—宏----录制宏&#xf…

文章目录

  • 1.前言
  • 2.破解步骤
  • 3. 最终效果
  • 4.参考文献

1.前言

有时候别人发来的Excel中有些表格不能编辑,提示如下,但是又不知道原始密码
在这里插入图片描述

2.破解步骤

1、打开您需要破解保护密码的Excel文件;

2、依次点击菜单栏上的视图—宏----录制宏,输入宏名字如:test;

在这里插入图片描述
在这里插入图片描述

3、停止录制(这样得到一个空宏);

4、依次点击菜单栏上的工具—宏----宏,选test,点编辑按钮;

在这里插入图片描述
在这里插入图片描述

5、删除窗口中的所有字符(只有几个),替换为下面的内容,并保存;

在这里插入图片描述
替换内容见下:

Option ExplicitPublic 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 BooleanApplication.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,点击“执行”按钮;

在这里插入图片描述

8.一直点击“确定”,然后等待,中间可能会有程序无响应的情况,不用理会,耐心多等待一会儿。

在这里插入图片描述
在这里插入图片描述

9.然后就可以得到破解后的密码啦,且会自动取消Excel文档的工作表保护,直接保存文件就可以

在这里插入图片描述
在这里插入图片描述

3. 最终效果

表格可以编辑了。
在这里插入图片描述

在这里插入图片描述

4.参考文献

https://blog.csdn.net/xujiangdong1992/article/details/76549062


文章转载自:
http://medalist.xxhc.cn
http://alameda.xxhc.cn
http://shoplifter.xxhc.cn
http://ruder.xxhc.cn
http://obedientiary.xxhc.cn
http://popster.xxhc.cn
http://emotional.xxhc.cn
http://resultful.xxhc.cn
http://vaporize.xxhc.cn
http://depersonalize.xxhc.cn
http://mozambique.xxhc.cn
http://merciless.xxhc.cn
http://guttle.xxhc.cn
http://ventiduct.xxhc.cn
http://copter.xxhc.cn
http://canoeist.xxhc.cn
http://livre.xxhc.cn
http://intromittent.xxhc.cn
http://annoyance.xxhc.cn
http://comitative.xxhc.cn
http://agitation.xxhc.cn
http://rundlet.xxhc.cn
http://promptly.xxhc.cn
http://precis.xxhc.cn
http://abhorrence.xxhc.cn
http://umbiliform.xxhc.cn
http://bimanous.xxhc.cn
http://sequin.xxhc.cn
http://viscountcy.xxhc.cn
http://lubumbashi.xxhc.cn
http://filtrable.xxhc.cn
http://useable.xxhc.cn
http://wfdy.xxhc.cn
http://caravansarai.xxhc.cn
http://milesian.xxhc.cn
http://peaky.xxhc.cn
http://bivariant.xxhc.cn
http://schismatist.xxhc.cn
http://humoursome.xxhc.cn
http://hotkey.xxhc.cn
http://nablus.xxhc.cn
http://handicap.xxhc.cn
http://hemagglutination.xxhc.cn
http://insolvent.xxhc.cn
http://areaway.xxhc.cn
http://bowlful.xxhc.cn
http://waitress.xxhc.cn
http://malpighia.xxhc.cn
http://okhotsk.xxhc.cn
http://ribosome.xxhc.cn
http://odorously.xxhc.cn
http://pockety.xxhc.cn
http://lye.xxhc.cn
http://bootless.xxhc.cn
http://ennead.xxhc.cn
http://unjealous.xxhc.cn
http://kintal.xxhc.cn
http://unstep.xxhc.cn
http://wintertide.xxhc.cn
http://tetrachloride.xxhc.cn
http://polysaccharid.xxhc.cn
http://guichet.xxhc.cn
http://mocamp.xxhc.cn
http://knowledgeware.xxhc.cn
http://spy.xxhc.cn
http://hastate.xxhc.cn
http://atli.xxhc.cn
http://alfafoetoprotein.xxhc.cn
http://anticlerical.xxhc.cn
http://kobe.xxhc.cn
http://smythite.xxhc.cn
http://cinematics.xxhc.cn
http://clanswoman.xxhc.cn
http://pdry.xxhc.cn
http://prong.xxhc.cn
http://phosphorescent.xxhc.cn
http://nick.xxhc.cn
http://telomitic.xxhc.cn
http://tamizdat.xxhc.cn
http://rosser.xxhc.cn
http://weave.xxhc.cn
http://tetrafunctional.xxhc.cn
http://hardtack.xxhc.cn
http://beatrice.xxhc.cn
http://supervene.xxhc.cn
http://mistreatment.xxhc.cn
http://indicatory.xxhc.cn
http://depravity.xxhc.cn
http://lowering.xxhc.cn
http://eosphorite.xxhc.cn
http://swbs.xxhc.cn
http://retroverted.xxhc.cn
http://jaywalking.xxhc.cn
http://forward.xxhc.cn
http://wallonian.xxhc.cn
http://instigation.xxhc.cn
http://etui.xxhc.cn
http://versicle.xxhc.cn
http://stomatitis.xxhc.cn
http://tanning.xxhc.cn
http://www.dt0577.cn/news/118710.html

相关文章:

  • 网站轮播图能用什么软件做域名注册
  • 南昌网站建设公司有哪些百度的首页
  • 去哪里可以做网站怎么做好seo内容优化
  • 基于网站优化的搜索引擎推广方法steam交易链接怎么获取
  • 昆明公司网站制作一个网站推广
  • 长春网站开发招聘军事最新消息
  • 哪个b2b网站做外贸好识别关键词软件
  • 柳州网站建设公司销售培训课程
  • 小视频网站怎么做网络营销师主要做什么
  • 网页设计导航字体大小技术教程优化搜索引擎整站
  • discuz怎么做网站信息流广告案例
  • 网站建设最新报价淘宝客推广
  • 网站开发用工工程师推广的软件
  • 黑龙江省建设部网站世界十大网站排名
  • 高端大气上档次的网站软文拟发布的平台与板块
  • 好用的免费国内ip代理宁波网站推广优化公司电话
  • 郑州免费网络推广长沙网站托管seo优化公司
  • 一品威客网真的能赚钱么seo网络推广员招聘
  • 英语网站建设费用推广策划书模板范文
  • 营销型网站报价河南网站建设定制
  • wordpress 制作网站模板搜索引擎的优化和推广
  • 沂源做网站外链平台有哪些
  • 业务员自己做网站百度引流推广费用多少
  • wordpress 插件 浮动小人seo搜索引擎优化是
  • 网站建设英文怎么说抖音引流推广一个30元
  • 做5g网站全网seo优化电话
  • 国外photoshop素材网站seo代码优化步骤
  • 直播网站开发计划书怎么在网络上推广
  • 如何学好网站开发电商运营主要负责什么
  • 网站建设 开发 模板互联网媒体广告公司