好湿?好紧?好多水好爽自慰,久久久噜久噜久久综合,成人做爰A片免费看黄冈,机机对机机30分钟无遮挡

主頁 > 知識(shí)庫 > VBS加密解密源碼(UserAccounts.CommonDialog) 腳本之家修正版

VBS加密解密源碼(UserAccounts.CommonDialog) 腳本之家修正版

熱門標(biāo)簽:前鋒辦理400電話申請 外呼營銷下單系統(tǒng) 新密防封卡外呼系統(tǒng)違法嗎 打電話的外呼系統(tǒng)貴不貴 陜西高頻外呼回?fù)芟到y(tǒng)哪家好 百度地圖標(biāo)注怎么卸載 辦理膠州400電話財(cái)稅 海外美發(fā)店地圖標(biāo)注 加盟電銷機(jī)器人好的品牌
用法:

1.copy下面代碼至文本文檔
2.將文件后綴名改為.vbs
3.雙擊運(yùn)行
復(fù)制代碼 代碼如下:

Ans = InPutBox("請輸入要執(zhí)行的操作:1.加密,2.解密,3.退出。")
Ans = Int(Ans)
If Ans =1 Then
set fso=createobject("scripting.filesystemobject")
Set objDialog = CreateObject("UserAccounts.CommonDialog")
objDialog.Filter = "vbs File|*.vbs|All Files|*.*"
objDialog.InitialDir = ""
objDialog.ShowOpen
strLoadFile = objDialog.FileName
if not strLoadFile = "" then
set op=fso.opentextfile(strLoadFile)
dow=13
do while op.atendofstream=false
line=op.readline
for i=1 to len(line)
achar=mid(line,i,1)
dow=dowChr(44)asc(achar)
next
dow=dowchr(44)"13"chr(44)"10"
loop
op.close
set op=fso.opentextfile(strLoadFile,2)
op.write "strs=array("dow")"chr(13)chr(10)_
"for i=1 to UBound(strs)"chr(13)chr(10)_
" runner=runnerchr(strs(i))"chr(13)chr(10)_
"next"chr(13)chr(10)_
"Execute runner"
msgbox "加密成功",,"提示"
end if
end if
If Ans = 2 Then
Set objfs=CreateObject("scripting.filesystemobject")
Set objDialog=CreateObject("UserAccounts.CommonDialog")
objDialog.Filter="vbs File|*.vbs|All Files|*.*"
objDialog.InitialDir = ""
objDialog.ShowOpen
strLoadFile = objDialog.FileName
if not strLoadFile = "" then
set objf=objfs.opentextfile(strLoadFile)
str=objf.ReadLine
start=InStr(str,"array(")+6
str=Mid(str,start,Len(str)-start)
strs=Split(str,",",-1,1)
for i=1 to UBound(strs)
runner=runnerchr(strs(i))
Next
objf.Close
Set objf=objfs.OpenTextFile(strLoadFile,2)
objf.Write runner
MsgBox "解密成功",,"提示"
end if
end if
if Ans = 3 Then
Wscript.Quit
End If

注意上面的代碼只有在winxp下使用,原因可以參考https://www.jb51.net/article/26390.htm因?yàn)槟莻€(gè)選擇文件功能不能使用而已,下面我們修改下,讓他支持win2000,win2003系統(tǒng),我們可以通過拖動(dòng)文件到這個(gè)vbs上即可。
腳本之家修改的加強(qiáng)版本
復(fù)制代碼 代碼如下:

If WScript.Arguments.Count=0 Then WScript.Quit
strLoadFile=WScript.Arguments(0)
Ans = InPutBox("請輸入要執(zhí)行的操作:1.加密,2.解密,3.退出。")
Ans = Int(Ans)
If Ans =1 Then
set fso=createobject("scripting.filesystemobject")
if not strLoadFile = "" then
set op=fso.opentextfile(strLoadFile)
dow=13
do while op.atendofstream=false
line=op.readline
for i=1 to len(line)
achar=mid(line,i,1)
dow=dowChr(44)asc(achar)
next
dow=dowchr(44)"13"chr(44)"10"
loop
op.close
set op=fso.opentextfile(strLoadFile,2)
op.write "strs=array("dow")"chr(13)chr(10)_
"for i=1 to UBound(strs)"chr(13)chr(10)_
" runner=runnerchr(strs(i))"chr(13)chr(10)_
"next"chr(13)chr(10)_
"Execute runner"
msgbox "加密成功",,"提示"
end if
end if
If Ans = 2 Then
Set objfs=CreateObject("scripting.filesystemobject")
if not strLoadFile = "" then
set objf=objfs.opentextfile(strLoadFile)
str=objf.ReadLine
start=InStr(str,"array(")+6
str=Mid(str,start,Len(str)-start)
strs=Split(str,",",-1,1)
for i=1 to UBound(strs)
runner=runnerchr(strs(i))
Next
objf.Close
Set objf=objfs.OpenTextFile(strLoadFile,2)
objf.Write runner
MsgBox "解密成功",,"提示"
end if
end if
if Ans = 3 Then
Wscript.Quit
End If
您可能感興趣的文章:
  • VBS加密與VBE解密實(shí)現(xiàn)方法
  • 簡單的VBS加密實(shí)現(xiàn)代碼
  • VBS加密免殺器 下載
  • VBS加密14法你會(huì)幾種 VBS加密免殺淺談

標(biāo)簽:伊春 咸陽 四平 牡丹江 阜陽 河南 梅州 武威

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《VBS加密解密源碼(UserAccounts.CommonDialog) 腳本之家修正版》,本文關(guān)鍵詞  VBS,加密解密,源碼,UserAccounts.CommonDialog,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《VBS加密解密源碼(UserAccounts.CommonDialog) 腳本之家修正版》相關(guān)的同類信息!
  • 本頁收集關(guān)于VBS加密解密源碼(UserAccounts.CommonDialog) 腳本之家修正版的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    主站蜘蛛池模板: 欧美激情视频一区| 办公室揉弄小雪好爽h| 天堂岛www最新版资源| 秋霞影音先锋一区二区| 快穿之小嫩娃h养成| 她唇之下电影| 男女毛片视频| 中国美女婬乱免费视频| 做暖视频| 你的欲梦裸身在线播放| 久久久精品人妻一区二区三区四 | 伊人久久成人| 扎兰屯市| 免费黄色大片网站| 自拍 另类 综合 欧美小说| 中文字幕理伦午夜福利片| 不要了不要| 国产一级淫片a视频免费观看| 男男肉动漫| 日本五级A片全部免费视频| 精品亚洲中文字幕在线| 欧美另类性视频在线看| 久草视频这里只有精品| 爽?好紧?别夹?喷水免费| 日本无码亚洲精品无码网站老牛| 乐乐亚洲精品综合影院| 啊好粗好大| 侵犯小少爷(h)| 好爽?好紧?宝贝坐上来| 国产免费又黄又爽又色毛| 91久久精品青青草原伊人| 24小时日本免费观看视频电影| 西西4444WWW大胆无视频| 德国性做爰A片免费看| 艹在线| 女男羞羞视频网站免费| 国产成人免费福利网站| 欧美重口变态yXXXcmS| 电车痴汉1~3动漫在线| 波多野结衣看片| 三级毛片在线看|