得力33025**机excel文件密码是多少

星空映像 & 张轩 2024-06-01 17:02:24
最佳回答
打卡机的excel文件都是有密码的,需要管理员密码才能更改,另外一般考勤机(差的那种)使用的是access数据库。这个access数据库应该是没有设密码的,可以在这里面修改原始记录。当然 前提是能接触到这个access数据库。如果也设置了密码,那么只能通过vba编码**密码实现更改记录。代码如下:
操作步骤:
1.打开需要**密码的excel;2.alt+f11,进入vba编辑界面;3.**-模块(module);4.在右边module的空白编辑区域,复制粘贴下面所有内容;5.f5,运行该vba命令;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 **
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&"s**e 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 th**"&_
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 th** 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 th** 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,vb**rmation,header
exit sub
end if
msgbox msgtaketime,vb**rmation,header
if not wintag then
msgbox msgnopwords2,vb**rmation,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),vb**rmation,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,vb**rmation,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),vb**rmation,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,vb**rmation,header
end sub
注意:如果代码执行有误,请把代码复制到记事本中,再复制出来,这样会把格式去掉,形成纯文本的格式。 20210311
汇率兑换计算器

类似问答
  • 密码文具盒多少钱
    • 2024-06-01 01:28:20
    • 提问者: 一个人ღ
    可以上天猫购买,15~30之间的价格,价格便宜,款式又多!
  • fast0360密码是多少
    • 2024-06-01 17:08:42
    • 提问者: 小楠(在努力)
    1.wifi热点初始密码一般是admin;2.用户是可以自己设置的wifi热点名称和密码;3.要知道无线热点路由器上密码,可以问设置那个人;4.可以下载一些蹭网软件蹭网,但蹭网不是**密码,蹭网软件是获取网友分享的wifi密码连路由器上网
  • 海天注塑机的密码是多少?
    • 2024-06-01 16:30:52
    • 提问者: 求婚策划师Kiki
    只要使用代码,使用密码不用输入。5858和1234.这是弘讯电脑的。如果是**电脑就是hpcfac即可。注塑机:注塑机,又名注射成型机或注射机。它是将热塑性塑料或热固性塑料利用塑料成型模具制成各种形状的塑料制品的主要成型设备。注塑机能加热塑料,对熔融塑料施加高压,使其射出而充满模具型腔。按照注射装置和锁模装置的排列方式,可分为立式、卧式和立卧复合式。
  • 苹果手机出厂密码是多少?
    • 2024-06-01 03:20:46
    • 提问者: 风云
    苹果手机没有出厂密码,只有自己设定的账号密码(苹果id),如果苹果id找不到了,可以在电脑端找回自己设定的账号密码,操作步骤如下:1、打开苹果的apple id账号管理页面,打开页面以后请点击“重设密码”选项;2、输入自己的apple id账号,这个账号是我们当初注册使用的邮箱地址;3、选择验证方法,选择电子邮箱验证方法,在第一个选项前面选中,然后点击下一步,即可。4、之后打开对应的邮箱,找到ap...
  • 手机服务密码一般是多少
    • 2024-06-01 10:26:31
    • 提问者: ??楚楚不冻人?
    服务密码是**移动客户的身份识别密码,由一组6位**伯数字组成。如您忘记服务密码,也可以通过以下途径找回:1、本人持有效**件到营业厅办理密码重置,他人**情况,持机主及**人**件。2、您可本机拨打10086人工热线进行在线办理。3、登录**移动10086官方**或“**移动10086”官方**(进入“个人主页”-重置密码)进行办理4、您可下载10086app、网上营业厅、掌上营业厅wap版、营...
  • 得力考勤机3960**机 excel文件修改密码是多少?
    • 2024-06-01 10:44:42
    • 提问者: 我上线了
    aaababbbbaa3
  • 得力**机3960,密码可以**吗?
    • 2024-06-01 21:29:49
    • 提问者: 娱大腿儿
    如果忘记了密码或者没有设置密码,则输入8181,就可以进入menu
  • 手机里蓝牙密码是多少?
    • 2024-06-01 21:09:34
    • 提问者: 荳荳蒎
    看你配对什么设备,比如鼠标一般是不需要密码的,键盘有的是随机的密码 有的是自己输入设定的密码,有的是固定的某个。耳机一般都是固定的某个 固定的密码一般设为0000 或者1234
  • gobo金铂手机密码是多少
    • 2024-06-01 16:24:49
    • 提问者: 大话绍兴
    关机,同时按音量上和开机键,手机有显示后松开,进去的是rec。进rec后,用音量上下选择到有个data/chace那,安电源键确定。此时平板会恢复出厂设置,密码就会清掉
  • 求求求、文具盒是带密码锁的的。忘记密码了。
    • 2024-06-01 07:02:30
    • 提问者: MochenDance小天
    密码不记得了,文具盒打不开了
汇率兑换计算器

热门推荐
热门问答
最新问答
推荐问答
新手帮助
常见问题
房贷计算器-九子财经 | 备案号: 桂ICP备19010581号-1 商务联系 企鹅:2790-680461

特别声明:本网为公益网站,人人都可发布,所有内容为会员自行上传发布",本站不承担任何法律责任,如内容有该作者著作权或违规内容,请联系我们清空删除。