首页 > 代码库 > Microsoft 脚本中心的VBS加密代码——Encode a Script
Microsoft 脚本中心的VBS加密代码——Encode a Script
原文链接:https://gallery.technet.microsoft.com/scriptcenter/16439c02-3296-4ec8-9134-6eb6fb599880
使用方法:先将下面代码存为VBS脚本,然后拖拽需要加密的VBS脚本到此脚本,即可完成加密。
Option Explicitdim oEncoder, oFilesToEncode, file, sDestdim sFileOut, oFile, oEncFile, oFSO, idim oStream, sSourceFileset oFilesToEncode = WScript.Argumentsset oEncoder = CreateObject("Scripting.Encoder")For i = 0 to oFilesToEncode.Count - 1 set oFSO = CreateObject("Scripting.FileSystemObject") file = oFilesToEncode(i) set oFile = oFSO.GetFile(file) Set oStream = oFile.OpenAsTextStream(1) sSourceFile=oStream.ReadAll oStream.Close sDest = oEncoder.EncodeScriptFile(".vbs",sSourceFile,0,"") sFileOut = Left(file, Len(file) - 3) & "vbe" Set oEncFile = oFSO.CreateTextFile(sFileOut) oEncFile.Write sDest oEncFile.CloseNext
Microsoft 脚本中心的VBS加密代码——Encode a Script
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。