Created
October 31, 2017 17:35
-
-
Save leoloobeek/c7a56e2254e9c948e024237143990360 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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