home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 November / PCWorld_2005-11_cd.bin / software / temacd / ppsee / PPSeeSetup.exe / ppsee.vbs < prev    next >
Text File  |  2005-09-25  |  3KB  |  80 lines

  1. ' ===================================================================
  2. ' runJ4Win.vbs version 0.93 - general starting script 
  3. ' for a Java application on MS Windows 98, ME, 2000, XP, 95+WSH, NT+WSH.
  4. ' Copyright (C) 1993-1994 Pavel Ponec, e-mail:ppsee@centrum.cz
  5. ' Home Page: http://pponec.net/ppsee/runj4/index.htm
  6. ' This program is free software; you can redistribute it and/or modify
  7. ' it under the terms of the GNU General Public License as published by
  8. ' the Free Software Foundation version 2 of the License.
  9. ' This program is distributed in the hope that it will be useful,
  10. ' but WITHOUT ANY WARRANTY.
  11. ' Please read bin/license-gpl.txt for the full details. A copy of the GPL may 
  12. ' be found at http://www.gnu.org/licenses/gpl.txt .
  13. '
  14. ' A History:
  15. ' rel. 0.92  - 2003/11/30 - The first public version
  16. ' rel. 0.93  - 2004/08/09 - Modified for PPSee java program
  17. '
  18. ' Usage: wscript ppsee.vbs 
  19. ' ===================================================================
  20.  
  21. ' Modify path to file "javaw.exe" in case you can't run the application.
  22. java = "C:\Program Files\Java\jre1.5.0_04\bin\javaw.exe" 
  23.  
  24. ' Maximal Memory Alocation:
  25. parameter = "-Xmx128m"
  26.  
  27. ' Java Archive:
  28. jarName = "bin\PPSee.jar"
  29.  
  30. ' Default Image Editor Path:
  31. imageEdit = ""
  32.  
  33. ' === CORE: ===
  34. Sub error(ByVal enable)
  35.   If enable Then
  36.     Wscript.Echo "WARNING from ""ppsee.vbs"" script:" & vbCrLf & vbCrLf & "File """ & java & """ was not found! " _
  37.     & vbCrLf & "Ensure you have installed a Java Runtime" _
  38.     & vbCrLf & "or try to modify a ""java"" variable in the script." _
  39.     & vbCrLf & "See ""read-me.html"" file for more information."  _
  40.     & vbCrLf & vbCrLf & "Java Runtime download page: http://java.com/download/"
  41.     WScript.Quit(1)
  42.   End If
  43. End Sub
  44.  
  45. set shell = WScript.CreateObject("Wscript.Shell")
  46. set fso   = WScript.CreateObject("Scripting.FileSystemObject")
  47. javax = java
  48. if not fso.FileExists(javax) then
  49.   jreg  = "HKLM\Software\JavaSoft\Java Runtime Environment\"
  50.   on error resume next
  51.   javax = shell.RegRead(jreg & "CurrentVersion")
  52.   error(Err.Number<>0)
  53.   javax = shell.RegRead(jreg & javax & "\JavaHome") & "\bin\javaw.exe"
  54.   error(Err.Number<>0)
  55.   On Error Goto 0
  56.   error(not fso.FileExists(javax))
  57. end if
  58. ' HTML Viewer
  59. htmlView = "HKLM\SOFTWARE\Classes\HTTP\shell\open\command\"
  60. htmlView = shell.RegRead(htmlView)
  61. htmlView = Replace (htmlView , """", "'")
  62. ' htmlView = Left(htmlView, InstrRev(htmlView, " "))
  63. imageEdit = Replace (imageEdit, """", "'")
  64. parameter = parameter & " " & "-DhtmlView=""" & htmlView & """ -DimageEdit=""" & imageEdit & """"
  65. ' User Parameters:
  66. paru = ""
  67. Set args = Wscript.Arguments
  68. For i = 0 to args.Count-1
  69.    paru = paru & " """ & args(i) & """" 
  70. Next
  71. path = WScript.ScriptFullName
  72. path = Left(path, InstrRev(path, "\"))
  73. param = """" & javax & """ " & parameter & " -jar """ & path & jarName & """" & paru
  74. shell.Run(param) 
  75. ' === EOF ===
  76.  
  77.  
  78.