Skip to content

Instantly share code, notes, and snippets.

@leoloobeek
Created October 31, 2017 17:35
Show Gist options
  • Save leoloobeek/c7a56e2254e9c948e024237143990360 to your computer and use it in GitHub Desktop.
Save leoloobeek/c7a56e2254e9c948e024237143990360 to your computer and use it in GitHub Desktop.
Option Explicit
dim oEncoder, oFilesToEncode, file, sDest
dim sFileOut, oFile, oEncFile, oFSO, i
dim oStream, sSourceFile
set oFilesToEncode = WScript.Arguments
set 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.Close
Next
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment