Change Java.exe to some other name

I have jdk1.6.0 installed on my machine with jre1.6.0
when i am running any application its process is running default java.exe
java.exe in Task Manager.
How to change the java.exe name to java1.exe .

Rename the exe on the disk.
There are utilities in Unix which allow you to change the name a process appears to have. But since you said .exe, I guess you're using Windows.
I've done this very successfully before. I have n batch files as part of a product which start different components of the project, each one does something like this...
if exists ..\jre\bin\blah.exe goto blahexists
copy ..\jre\bin\java.exe ..\jre\bin\blah.exe
:blahexists
..\jre\bin\blah.exe -cp blah blah
In that way, each batch file can dynamically create a new .exe as approprate and the Windows task manager will show you blah.exe (and foo.exe and myserver.exe) instead of java.exe, which means you can kill them! :-)

Similar Messages

  • Exe or some other file

    I was wondering if this is possible.
    I created a 2 page program in coldfusion. It requires alot of
    math processing and I was wondering if these two pages can be
    compliled as an exe program to be run on a computer without haveing
    to rely on the CF server to do the processing.
    Regards
    Craig

    No, you can not compile CFML into in .exe. As mentioned, CFML
    is
    compiled into Java bytecode so you get that performance after
    the page
    is run once.
    But you feel you really, Really, REALLY need an exe. You can
    write the
    code in a language that does create a .exe file. Then you
    could use
    this file with either a <cfexecute ...> tag or possibly
    a <CFX_...> tag,
    depending on how you wrote and compiled the code in the
    other
    language. I beleive the <CFX tag would be expecting a .dll
    vs a .exe)
    izdabye wrote:
    > I was wondering if this is possible.
    >
    > I created a 2 page program in coldfusion. It requires
    alot of math processing
    > and I was wondering if these two pages can be compliled
    as an exe program to be
    > run on a computer without haveing to rely on the CF
    server to do the processing.
    >
    > Regards
    > Craig
    >

  • Movement Type Change From 321 to Some other In Stock Posting (Insp Type 05)

    Hi,
        While doing the stock Posting From quality to Unrest - Automatic 321 Movment type is happening
        But my client neads to identify how many qty from custmer return is passed to unrestricted from       
        quality.
       i have problem in identify since 01 and 04 and also 05 all are having the same mvt since it is automatic
    Can it be possible to chnage the mvt for the particular Inspection type 05.
    kindly give me is there any way to solve this issue.
    Regards
    jai

    Dear jaikumar
    No need of changing movement type for the same. You have too many options to get this fugure
    You can use Tcode se16, se16n and in the table QALS you will be able to know the quantity posted to unrestricted by selecting 05 inspection and from to date in input for the table view
    else go to the standard report . Tcode MCXC, MCXI you will get the report based on inspection type and period
    Regards
    gajesh

  • Single open tab, Click "x" to close, browser defaults to a web page for my bank. How can I change to "blank" or some other page?

    Have a single open tab. Regardless of the website active in that tab, if I close it (click "x"), FF shows my bank's homepage. I'd prefer not to display my bank homepage. How can I change to another page or, preferably, a "blank" page?
    This happens regardless of the page current when I close the single tab and after I close and restart FF. Haven't tried rebooting computer.
    Windows XP Home, Ver. 5.1, SP3.
    FF 5.0.

    Check the links below for options to remove the Adware.
    The Easy, safe, effective method:
    http://www.adwaremedic.com/index.php
    If you are comfortable doing manual file removals use the somewhat more difficult method:
    http://support.apple.com/en-us/HT203987
    Also read the articles below to be more prepared for the next time there is an issue on your computer.
    https://discussions.apple.com/docs/DOC-7471
    https://discussions.apple.com/docs/DOC-8071

  • Java.exe in c:\winnt\system32?

    Hi,
    I have installed J2SE1.3.1 and J2EE 1.3 b2 on my win2000pro machine and was experimenting with my environment.
    In J2SE1.3.1 installation instructions it was said, that for convenience you can set path to
    point to your j2se1.3.1\bin dir... Ok. Did that. I had a path like follows:
    path=c:\winnt;c:\winnt\system32;c:\jdk1.3.1\bin;
    And I had no problems running java apps from the command line.
    But one day I accidentally looked in c:\winnt\system32 and found (!!!) java.exe and some other files and dlls, which under normal circumstances (may be well, I just didn't know they were installed there) reside in jdk1.3.1\bin. So actually, java.exe from c:\winnt\system32 was executed each time I ran java.exe.
    I checked the versions of both:
    in jdk:
    --- output begin ---
    C:\jdk1.3.1\bin>java -version
    java version "1.3.1"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1-b24)
    Java HotSpot(TM) Client VM (build 1.3.1-b24, mixed mode)
    --- output end ---
    and in windows:
    --- output begin ---
    C:\WINNT\system32>java -version
    java version "1.3.1"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1-b24)
    Java HotSpot(TM) Client VM (build 1.3.1-b24, mixed mode)
    --- output end ---
    Looks the same (java.exe files exist in both dirs and they seem to be the same by size and date...
    Ok.
    I checked -help output:
    --- output begin ---
    C:\jdk1.3.1\bin>java.exe -help
    Usage: java [-options] class [args...]
    (to execute a class)
    or java -jar [-options] jarfile [args...]
    (to execute a jar file)
    where options include:
    -hotspot to select the "hotspot" VM
    -server to select the "server" VM
    -classic to select the "classic" VM
    If present, the option to select the VM must be first.
    The default VM is -hotspot.
    -cp -classpath <directories and zip/jar files separated by ;>
    set search path for application classes and resources
    -D<name>=<value>
    set a system property
    -verbose[:class|gc|jni]
    enable verbose output
    -version print product version and exit
    -showversion print product version and continue
    -? -help print this help message
    -X print help on non-standard options
    --- output end ---
    And in windows:
    --- output begin ---
    C:\WINNT\system32>java.exe -help
    Usage: java [-options] class [args...]
    (to execute a class)
    or java -jar [-options] jarfile [args...]
    (to execute a jar file)
    where options include:
    -hotspot to select the "hotspot" VM
    If present, the option to select the VM must be first.
    The default VM is -hotspot.
    -cp -classpath <directories and zip/jar files separated by ;>
    set search path for application classes and resources
    -D<name>=<value>
    set a system property
    -verbose[:class|gc|jni]
    enable verbose output
    -version print product version and exit
    -showversion print product version and continue
    -? -help print this help message
    -X print help on non-standard options
    --- output end ---
    Notice - in c:\jdk "version" of java.exe two more switches exist, namely:
    -server to select the "server" VM
    -classic to select the "classic" VM
    These options do not exist in "windows" java.exe version.
    I suppose, that those "additional" options do not appear, because there is fairly incomplete list of files from jdk1.3.1\bin exists in winnt\system32 - i.e. "dlls" for "server" and "classic" (why for classic) are not available... But I do not know for sure...
    My questions are:
    Is is a normal installation option for either j2ee or j2se?
    If it is, why in the j2se installation instructions they recommend to "correct" the path for "convenience" if in the final account the java.exe from "windows" is called, which well might be really undesired behaviour... (path=c:\winnt;c:\winnt\system32;c:\jdk1.3.1\bin;)
    Where can I read more about this particular situation?
    Thanks a lot guys!

    Is is a normal installation option for either j2ee or j2se?Yes; it is said somewhere in the JRE installation notes. The windoze JRE installer will copy java.exe and javaw.exe (apparently with some other files) to the win dir. You should also find a third java.exe from c:\program files\javasoft\jre\1.3.1\bin or something like that.

  • Class names, 'HelloWorldApp.java.exe' are only accepted if annotation -----

    {font:#mce_temp_font#}Class names, 'HelloWorldApp.java.exe', are only accepted if annotation processing is explicitly requested.
    1error
    In continuation to reply "All you should be doing is accessing the .exe files in/bin. That means adding that directly to your PATH so that the os------to find the .exe files.
    I,d recommend-------DOS file path convention"(e.g. "C\Progra~1\Java\jdk1.6.0\bin")------
    Question: May i ask you -there are so many .exe files under the folder
    "C\Progra~1\Java\jdk1.6.0\bin" such as
    java.exe, jar.exe, appletviewer.exe -------etc Which files are you refering to?
    Suppose, java.exe is the correct file, if ENTER on following command
    in Command Prompt
    C:\Progra~1\Java\jdk1.6.0\bin\javac HelloWorldApp.java.exe
    (Here, My file name>>HelloWorldApp)
    i get Clas names, 'HelloWorldApp.java.exe', are only accepted if annotation processing is explicitly requested.
    1error
    Am i proceeding in the correct way? If correct, what to do next?
    damp{font}

    Work through the Tutorial:
    http://java.sun.com/docs/books/tutorial/getStarted/cupojava/win32.html
    Your source file is called
        HelloWorld.javaIn the directory containing thes file you compile with
        javac -cp . HelloWorld.javaAnd run with
        java -cp . HelloWorldThere is no ".exe" anywhere.

  • While starting websphere 8 java.exe error occurs

    <?xml version="1.0" encoding="UTF-16"?>
    <DATABASE>
    <EXE NAME="java.exe" FILTER="GRABMI_FILTER_PRIVACY">
    <MATCHING_FILE NAME="appletviewer.exe" SIZE="36616" CHECKSUM="0xADEC37BD" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110401_01" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110401_01" ORIGINAL_FILENAME="appletviewer.exe" INTERNAL_NAME="appletviewer" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x146FC" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="04/01/2011 09:20:32" UPTO_LINK_DATE="04/01/2011 09:20:32" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="apt.exe" SIZE="37128" CHECKSUM="0x3EAB1836" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110401_01" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110401_01" ORIGINAL_FILENAME="apt.exe" INTERNAL_NAME="apt" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x15BA4" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="04/01/2011 08:45:47" UPTO_LINK_DATE="04/01/2011 08:45:47" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="beanreg.dll" SIZE="42760" CHECKSUM="0x6590E42A" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110328_01" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110328_01" ORIGINAL_FILENAME="beanreg.dll" INTERNAL_NAME="JavaBeans(TM) Registration Library" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0xC6AE" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="03/28/2011 13:54:28" UPTO_LINK_DATE="03/28/2011 13:54:28" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="extcheck.exe" SIZE="36616" CHECKSUM="0xAD05D5AD" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110401_01" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110401_01" ORIGINAL_FILENAME="extcheck.exe" INTERNAL_NAME="extcheck" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x15858" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="04/01/2011 09:49:25" UPTO_LINK_DATE="04/01/2011 09:49:25" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="HtmlConverter.exe" SIZE="54536" CHECKSUM="0x5FED12F" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110328_01" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110328_01" ORIGINAL_FILENAME="htmlConverter.exe" INTERNAL_NAME="HTML Converter for Java(TM) Plug-in" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x1108E" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="03/28/2011 13:57:49" UPTO_LINK_DATE="03/28/2011 13:57:49" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="idlj.exe" SIZE="36616" CHECKSUM="0x905EFA76" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110401_01" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110401_01" ORIGINAL_FILENAME="idlj.exe" INTERNAL_NAME="idlj" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x1082F" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="04/01/2011 09:05:57" UPTO_LINK_DATE="04/01/2011 09:05:57" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="jar.exe" SIZE="36616" CHECKSUM="0xFE5D674A" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110401_01" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110401_01" ORIGINAL_FILENAME="jar.exe" INTERNAL_NAME="jar" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x124F9" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="04/01/2011 09:09:15" UPTO_LINK_DATE="04/01/2011 09:09:15" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="jarsigner.exe" SIZE="36616" CHECKSUM="0x1F4B7149" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110401_01" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110401_01" ORIGINAL_FILENAME="jarsigner.exe" INTERNAL_NAME="jarsigner" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x10E33" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="04/01/2011 09:08:31" UPTO_LINK_DATE="04/01/2011 09:08:31" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="java-rmi.exe" SIZE="37128" CHECKSUM="0x515D1085" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110401_01" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110401_01" ORIGINAL_FILENAME="java-rmi.exe" INTERNAL_NAME="java-rmi" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0xA9D7" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="04/01/2011 09:25:33" UPTO_LINK_DATE="04/01/2011 09:25:33" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="java.exe" SIZE="148744" CHECKSUM="0xF8505729" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110401_01" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110401_01" ORIGINAL_FILENAME="java.exe" INTERNAL_NAME="java" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x2B56C" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="04/01/2011 08:38:41" UPTO_LINK_DATE="04/01/2011 08:38:41" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="javac.exe" SIZE="37128" CHECKSUM="0x4B43CC5" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110401_01" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110401_01" ORIGINAL_FILENAME="javac.exe" INTERNAL_NAME="javac" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x16F13" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="04/01/2011 08:40:44" UPTO_LINK_DATE="04/01/2011 08:40:44" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="javadoc.exe" SIZE="37128" CHECKSUM="0x6F66552A" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110401_01" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110401_01" ORIGINAL_FILENAME="javadoc.exe" INTERNAL_NAME="javadoc" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0xC401" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="04/01/2011 08:45:15" UPTO_LINK_DATE="04/01/2011 08:45:15" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="javah.exe" SIZE="37128" CHECKSUM="0xD2B1785D" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110401_01" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110401_01" ORIGINAL_FILENAME="javah.exe" INTERNAL_NAME="javah" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x10305" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="04/01/2011 08:46:15" UPTO_LINK_DATE="04/01/2011 08:46:15" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="javap.exe" SIZE="37128" CHECKSUM="0xA6D6ECF5" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110401_01" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110401_01" ORIGINAL_FILENAME="javap.exe" INTERNAL_NAME="javap" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x13462" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="04/01/2011 09:35:48" UPTO_LINK_DATE="04/01/2011 09:35:48" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="javaw.exe" SIZE="148744" CHECKSUM="0xE7393597" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110401_01" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110401_01" ORIGINAL_FILENAME="javaw.exe" INTERNAL_NAME="javaw" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x28B11" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="04/01/2011 08:38:48" UPTO_LINK_DATE="04/01/2011 08:38:48" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="javaws.exe" SIZE="152840" CHECKSUM="0xED6D5B69" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110328_01" FILE_DESCRIPTION="Java(TM) Web Start Launcher" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110328_01" ORIGINAL_FILENAME="javaws.exe" INTERNAL_NAME="Java(TM) Web Start Launcher" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x33BB7" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="03/28/2011 13:40:31" UPTO_LINK_DATE="03/28/2011 13:40:31" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="jconsole.exe" SIZE="37128" CHECKSUM="0xE6D17FBF" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110401_01" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110401_01" ORIGINAL_FILENAME="jconsole.exe" INTERNAL_NAME="jconsole" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x1461A" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="04/01/2011 09:37:15" UPTO_LINK_DATE="04/01/2011 09:37:15" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="jdb.exe" SIZE="36616" CHECKSUM="0xAE7773CE" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110401_01" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110401_01" ORIGINAL_FILENAME="jdb.exe" INTERNAL_NAME="jdb" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0xE6EF" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="04/01/2011 09:54:56" UPTO_LINK_DATE="04/01/2011 09:54:56" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="jdmpview.exe" SIZE="36616" CHECKSUM="0x68EA631A" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110401_01" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110401_01" ORIGINAL_FILENAME="jdmpview.exe" INTERNAL_NAME="jdmpview" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x185AF" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="04/01/2011 09:51:54" UPTO_LINK_DATE="04/01/2011 09:51:54" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="jli.dll" SIZE="83208" CHECKSUM="0xDB07CDAD" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110401_01" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110401_01" ORIGINAL_FILENAME="jli.dll" INTERNAL_NAME="jli" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x179AE" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="04/01/2011 08:38:29" UPTO_LINK_DATE="04/01/2011 08:38:29" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="jrunscript.exe" SIZE="36616" CHECKSUM="0x80AA9568" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110401_01" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110401_01" ORIGINAL_FILENAME="jrunscript.exe" INTERNAL_NAME="jrunscript" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0xC264" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="04/01/2011 09:37:29" UPTO_LINK_DATE="04/01/2011 09:37:29" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="keytool.exe" SIZE="36616" CHECKSUM="0x8587FD5A" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110401_01" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110401_01" ORIGINAL_FILENAME="keytool.exe" INTERNAL_NAME="keytool" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x161D9" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="04/01/2011 09:51:35" UPTO_LINK_DATE="04/01/2011 09:51:35" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="msvcr100.dll" SIZE="769800" CHECKSUM="0x6C2B1057" BIN_FILE_VERSION="10.0.30319.1" BIN_PRODUCT_VERSION="10.0.30319.1" PRODUCT_VERSION="10.00.30319.1" FILE_DESCRIPTION="Microsoft® C Runtime Library" COMPANY_NAME="Microsoft Corporation" PRODUCT_NAME="Microsoft® Visual Studio® 2010" FILE_VERSION="10.00.30319.1" ORIGINAL_FILENAME="msvcr100_clr0400.dll" INTERNAL_NAME="msvcr100_clr0400.dll" LEGAL_COPYRIGHT="© Microsoft Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0xBDD25" LINKER_VERSION="0xA0000" UPTO_BIN_FILE_VERSION="10.0.30319.1" UPTO_BIN_PRODUCT_VERSION="10.0.30319.1" LINK_DATE="03/18/2010 07:52:30" UPTO_LINK_DATE="03/18/2010 07:52:30" VER_LANGUAGE="English (United States) [0x409]" />
    <MATCHING_FILE NAME="msvcr71.dll" SIZE="353544" CHECKSUM="0x448A147E" BIN_FILE_VERSION="7.10.3052.4" BIN_PRODUCT_VERSION="7.10.3052.4" PRODUCT_VERSION="7.10.3052.4" FILE_DESCRIPTION="Microsoft® C Runtime Library" COMPANY_NAME="Microsoft Corporation" PRODUCT_NAME="Microsoft® Visual Studio .NET" FILE_VERSION="7.10.3052.4" ORIGINAL_FILENAME="MSVCR71.DLL" INTERNAL_NAME="MSVCR71.DLL" LEGAL_COPYRIGHT="© Microsoft Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x62A93" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="7.10.3052.4" UPTO_BIN_PRODUCT_VERSION="7.10.3052.4" LINK_DATE="02/21/2003 12:42:20" UPTO_LINK_DATE="02/21/2003 12:42:20" VER_LANGUAGE="English (United States) [0x409]" />
    <MATCHING_FILE NAME="msvcrt.dll" SIZE="348424" CHECKSUM="0x62160733" BIN_FILE_VERSION="7.0.2600.5512" BIN_PRODUCT_VERSION="6.1.8638.5512" PRODUCT_VERSION="7.0.2600.5512" FILE_DESCRIPTION="Windows NT CRT DLL" COMPANY_NAME="Microsoft Corporation" PRODUCT_NAME="Microsoft® Windows® Operating System" FILE_VERSION="7.0.2600.5512 (xpsp.080413-2111)" ORIGINAL_FILENAME="msvcrt.dll" INTERNAL_NAME="msvcrt.dll" LEGAL_COPYRIGHT="© Microsoft Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x5657B" LINKER_VERSION="0x50001" UPTO_BIN_FILE_VERSION="7.0.2600.5512" UPTO_BIN_PRODUCT_VERSION="6.1.8638.5512" LINK_DATE="04/14/2008 00:12:56" UPTO_LINK_DATE="04/14/2008 00:12:56" VER_LANGUAGE="English (United States) [0x409]" />
    <MATCHING_FILE NAME="native2ascii.exe" SIZE="36616" CHECKSUM="0xEB75F5F3" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110401_01" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110401_01" ORIGINAL_FILENAME="native2ascii.exe" INTERNAL_NAME="native2ascii" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0xCD2A" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="04/01/2011 09:36:02" UPTO_LINK_DATE="04/01/2011 09:36:02" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="packager.exe" SIZE="99592" CHECKSUM="0xB83DF533" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110328_01" FILE_DESCRIPTION="JavaBeans(TM) Packager" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110328_01" ORIGINAL_FILENAME="packager.exe" INTERNAL_NAME="JavaBeans(TM) Packager" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x1BAA4" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="03/28/2011 13:54:23" UPTO_LINK_DATE="03/28/2011 13:54:23" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="policytool.exe" SIZE="36616" CHECKSUM="0x85DFBEA7" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110401_01" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110401_01" ORIGINAL_FILENAME="policytool.exe" INTERNAL_NAME="policytool" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0xCC24" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="04/01/2011 09:08:38" UPTO_LINK_DATE="04/01/2011 09:08:38" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="rmic.exe" SIZE="37128" CHECKSUM="0xAD306B49" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110401_01" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110401_01" ORIGINAL_FILENAME="rmic.exe" INTERNAL_NAME="rmic" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0xDE2E" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="04/01/2011 09:23:45" UPTO_LINK_DATE="04/01/2011 09:23:45" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="rmid.exe" SIZE="36616" CHECKSUM="0x654B4376" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110401_01" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110401_01" ORIGINAL_FILENAME="rmid.exe" INTERNAL_NAME="rmid" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x15AFD" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="04/01/2011 09:25:06" UPTO_LINK_DATE="04/01/2011 09:25:06" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="rmiregistry.exe" SIZE="36616" CHECKSUM="0x85DFBEA7" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110401_01" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110401_01" ORIGINAL_FILENAME="rmiregistry.exe" INTERNAL_NAME="rmiregistry" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0xE78C" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="04/01/2011 09:24:34" UPTO_LINK_DATE="04/01/2011 09:24:34" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="schemagen.exe" SIZE="36616" CHECKSUM="0x6CE83B6A" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110401_01" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110401_01" ORIGINAL_FILENAME="schemagen.exe" INTERNAL_NAME="schemagen" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0xDE9D" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="04/01/2011 09:33:08" UPTO_LINK_DATE="04/01/2011 09:33:08" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="serialver.exe" SIZE="37128" CHECKSUM="0xA97A756F" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110401_01" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110401_01" ORIGINAL_FILENAME="serialver.exe" INTERNAL_NAME="serialver" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x18A10" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="04/01/2011 09:36:12" UPTO_LINK_DATE="04/01/2011 09:36:12" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="tnameserv.exe" SIZE="36616" CHECKSUM="0xEE4C257F" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110401_01" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110401_01" ORIGINAL_FILENAME="tnameserv.exe" INTERNAL_NAME="tnameserv" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0xEB58" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="04/01/2011 09:42:17" UPTO_LINK_DATE="04/01/2011 09:42:17" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="wsgen.exe" SIZE="36616" CHECKSUM="0x70DCD729" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110401_01" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110401_01" ORIGINAL_FILENAME="wsgen.exe" INTERNAL_NAME="wsgen" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x1403D" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="04/01/2011 09:34:30" UPTO_LINK_DATE="04/01/2011 09:34:30" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="wsimport.exe" SIZE="36616" CHECKSUM="0x6531900" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110401_01" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110401_01" ORIGINAL_FILENAME="wsimport.exe" INTERNAL_NAME="wsimport" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0xF00E" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="04/01/2011 09:34:40" UPTO_LINK_DATE="04/01/2011 09:34:40" VER_LANGUAGE="Language Neutral [0x0]" />
    <MATCHING_FILE NAME="xjc.exe" SIZE="36616" CHECKSUM="0xFDCEAB23" BIN_FILE_VERSION="6.0.0.0" BIN_PRODUCT_VERSION="6.0.0.0" PRODUCT_VERSION="6.0.0-20110401_01" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="IBM" PRODUCT_NAME="IBM Developer Kit for Windows,Java,1.6.0" FILE_VERSION="6.0.0-20110401_01" ORIGINAL_FILENAME="xjc.exe" INTERNAL_NAME="xjc" LEGAL_COPYRIGHT="Copyright IBM Corp. 1998,2007" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x13E5E" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.0" UPTO_BIN_PRODUCT_VERSION="6.0.0.0" LINK_DATE="04/01/2011 09:32:42" UPTO_LINK_DATE="04/01/2011 09:32:42" VER_LANGUAGE="Language Neutral [0x0]" />
    </EXE>
    <EXE NAME="kernel32.dll" FILTER="GRABMI_FILTER_THISFILEONLY">
    <MATCHING_FILE NAME="kernel32.dll" SIZE="989696" CHECKSUM="0x2D998938" BIN_FILE_VERSION="5.1.2600.5781" BIN_PRODUCT_VERSION="5.1.2600.5781" PRODUCT_VERSION="5.1.2600.5781" FILE_DESCRIPTION="Windows NT BASE API Client DLL" COMPANY_NAME="Microsoft Corporation" PRODUCT_NAME="Microsoft® Windows® Operating System" FILE_VERSION="5.1.2600.5781 (xpsp_sp3_gdr.090321-1317)" ORIGINAL_FILENAME="kernel32" INTERNAL_NAME="kernel32" LEGAL_COPYRIGHT="© Microsoft Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0xFE572" LINKER_VERSION="0x50001" UPTO_BIN_FILE_VERSION="5.1.2600.5781" UPTO_BIN_PRODUCT_VERSION="5.1.2600.5781" LINK_DATE="03/21/2009 14:06:58" UPTO_LINK_DATE="03/21/2009 14:06:58" VER_LANGUAGE="English (United States) [0x409]" />
    </EXE>
    </DATABASE>

    Problem is within com.octetstring.vde.util.LDIF file. If the <domain>/security/ldap *.initiated files have extra spaced etc you could see this. Attempt manual change of file after a backup and restart to see if this helps.

  • How to make jar files run using java.exe and not javaw.exe

    Hi ,
    I am developing a project in which there is an GUI which inturn will call a console . I have made it into an jar file now.
    Here comes the problem. When i run the jar files , i don't get a console. While going through this forum, i came to know that jar runs using javaw.exe and this stops it from bring the console up.
    Please suggest me a way of running the jar file through java.exe or any other method by which i can get an new console poping up.
    PS : i cannot start the application itself in a system console , because the Console mode is an added feature and it is not to be displayed every time but only when the user intends to.

    Thanks for the reply pbrockway2. But i think, i was not able to convey my problem properly.
    I am supposed to start my application in a GUI mode ( No console are should be present at this point of time). Within the GUI , i have a option for working in the console ( i.e if console is choosen, then i start giving my output and take inputs from the console. I am trying to do this by just calling the "System.out "and "System.in" methods. )
    Here is the problem. As i have started it through " jar " it would not have a associated console with it.
    PS: i cannot have launching .bat file because that would result in my application having a console displayed at the very start of the application. I want the console to be displayed only when the user wants to start in console mode.
    Please suggest me some ways of doing this. Can i create a console from my java program and then exit it.

  • Rename java.exe process

    Is there a way to run a java program in Windows and have its process named something other than "jave.exe"? I have a problem where there are multiple java processes running and I would like to able to kill them selectively.

    Java programs don't run as native code. The Java runtime environment is the application that is actually executing under Windows, and your application runs under the JRE. This being the case, Windows isn't even aware that your application has a name other than "java.exe".
    That being said, I have been able to copy java.exe to a different name (but still in the jre1.5.0\bin directory) and run that version, which then shows up in the Task Manager.

  • Two java.exe processes running in the Task Manager in Windows XP

    I tried to find the best possible place to post this and after spending about 20 minutes searching for an appropriate forum starting from java.com I ended up here. So forgive me if the is a wrong place and if there?s a more appropriate place for my question, please provide a pointer to it.
    I don't know much about java and what it does but as the title says when I open the Task manager there are two java.exe processes running at the same time with about 20 000 k each.
    One of the processes is coming from:
    C:\Program Files\Alias\Maya6.5\docs\jre\bin\java.exe
    and the other from:
    C:\Program Files\Alias\Maya7.0\docs\jre\bin\java.exe
    in addition to that a jusched.exe process is also running coming from
    C:\Program Files\Java\jre1.5.0_10\bin\jusched.exe
    I rarely open the Maya 6.5 and 7 documentations but the two java.exe process are running all the time and I would like to stop them running when I don?t need them but I don?t know how.
    I can't end these processes from the Task Manager; they reappear immediately after I end them.
    Any help with this is greatly appreciated.
    Thank you

    Try to see:
    http://forums.cgsociety.org/showthread.php?t=294973
    Bye,
    leo

  • Other Name and X others

    When in FaceTime, if I choose a name to Face Time, generally a family member, the call dialog comes up with " Some Other Name and N others"
    Where the Some Other Name is just that, and N others, could be 2, 3 ,etc. It does not appear as if these are part of a group I created, and the only person that answers is the one I originally selected.
    What is causing this and how can I avoid it?

    When I saw your urgent post, I was on an important phone call, but I asked the guy if I could call him back. I also postponed an important meeting and cancelled lunch.
    I hope this reply meets your requirements, and more importantly, is up to your high quality of standards. Oh, and please send my regards to her Highness, the Queen.

  • The password for the account "account name" was not changed. Your system administrator may not allow you to change your password or there was some other problem with your password. Contact your system administrator for help.

    I have a user who's Active Directory password is going to expire. I had her reset her password by going to apple > system prefs > user > and clicking change password. She received the error "The password for the account "account name" was not changed. Your system administrator may not allow you to change your password or there was some other problem with your password. Contact your system administrator for help."
    I had her change her password via the kpasswd command in terminal and that changed her password on the server sucessfully however the laptop has FileVault on it. Filevault is not recognizing the new password just the old password.
    I have deleted the keychain which didn't resolve and now I am going to decrypt and reencrypt the drive. I'm hoping this is an isolated issue I have over 25 laptops configured like this.

    I "think" the trick was unbinding and rebinding the computer account.
    After unencrypting and trying to reencrypt Filevault would still not take the new password.
    Rebooted the prompt to update the keychain appeared. Updated the keychain. Filevault would still not take the new password.
    Unbinded and rebinded the computer account. It worked and let me add the user to filevault.

  • How to get Class Name given along with java.exe

    Hi friends,
    I am Mukesh, currently facing one problem
    On command prompt to execute any java program we give :
    C : \.-- > java ClassName
    This ClassName I need in my application, I want to do some post processing on that.
    Actually see what I want :
    public class Base
    static Base object;
    public static void main(String[] args) throws Exception
    object=(Base)Class.forName("Derived Class Name").newInstance();
    void main()
    public class Derived extends Base
    void main()
    System.out.println("Hello World");
    I am trying to Run Derived Class, since there is no entry point found, default JVM invoke the Base class's entry point, there I want to load
    Derived Class, but I am not getting any identity of derived class in Base class.
    I found one temporary solution to this problem :
    C: \ -- >java Derived Derived
    & in Base class, I have loaded class
    object=Class.forName(args[0]).newInstance();
    But I dont want to write the same thing twise just to know the Class name which is given along with java.exe.
    Is there any way to get the ClassName supplied with java.exe
    I have tried a lot, still I am trying !!!
    If any one knows the answer, help me.
    Regards.
    Mukesh.

    Multiple post. Please continue in other thread
    http://forum.java.sun.com/thread.jspa?threadID=5196980&tstart=0

  • Use a Java Script variable's value in some other  jsp ....how?

    Please help me.................
    <%@ page import="java.util.*" %>
    <%@ page language = "java" import="java.sql.*,javax.servlet.*,javax.servlet.http.*,java.util.*" session = "true" %>
    <HTML>
    <HEAD>
    <TITLE>Create Employee</TITLE>
    </HEAD>
    <BODY>
    <%
         Connection conn = null;
         Statement stmt = null;
         ResultSet rs = null;
         try {
              Class.forName("com.mysql.jdbc.Driver");
    conn = DriverManager.getConnection("jdbc:mysql://10.203.143.55:3306/bdaymgr" ,"root","mysql");
              stmt = conn.createStatement();
              rs = stmt.executeQuery("Select emp_id,emp_name From employee_info ");
              System.out.println("rs " + rs);
    %>
    <script language="JavaScript">
         function OnSubmitForm(){
         var box = document.form2.UserList;
         var where_to = box.options[box.options.selectedIndex].value;
         if(where_to =="")
    {document.write("Please select something");}
         else {Dont know what to do here }
         </script>
    </script>
    <center>
    <FORM NAME = "form2" onSubmit="OnSubmitForm();">
    <table>
    <TR>
         <TD width="11%">User ID : </TD>
         <TD width="180%"><select name="UserList" size="1">
         <option>-- Select A User ID --<option>
         <% while (rs.next()) {
         %>
         <option value='<%= rs.getString("EMP_ID")%>' ><%=rs.getString("EMP_ID") %></option>
         <% } %>
         </select>
         <input type="hidden" name="score" value="">
         <INPUT TYPE="SUBMIT" name="Submit" VALUE="Submit">
         </TD></TR>
    </TABLE>
    </FORM>
    </Center>
    <%
              stmt.close();
                   rs.close();
              catch(Exception e){
                   System.out.println("Error : "+ e);
                   response.sendRedirect("errorcreateSession.jsp");
    %>
    </BODY>
    </HTML>
    As u can see i have extracted emp_id from the employee_info table and populated it in my drop down list
    In the javascript i have used a variable "where_to" which keeps track of what the user has selected in the drop down list
    I want to use this value of "where_to" in some other other jsp(say Admin.jsp) to carry out an insert query
    how can i retrieve this value of "where_to" from Admin.jsp so that i can carry out my insert query
    Thanx in advance i certainly hope that u will help me

    I made these changes in my Guest.jsp page(as u mentioned):
    <FORM NAME = "form2" onSubmit="return OnSubmitForm();" action="Admin.jsp">
    <select name="UserList" size="1">
         <option>-- Select A User ID --<option>
    </select>
         <INPUT TYPE="SUBMIT" name="Submit" VALUE="Submit">
    <script language="JavaScript">
         function OnSubmitForm(){
         var box = document.form2.UserList;
         var where_to = box.options[box.options.selectedIndex].value;
         if(where_to =="")
    document.write("Please select something");
    return false;
    else
    return true;
    </script>
    Now have a look at my Admin.jsp page:
    <%@ page import="java.util.*" %>
    <%@ page language = "java" import="java.sql.*,javax.servlet.*,javax.servlet.http.*,java.util.*" session = "true" %>
    <HTML>
    <HEAD>
    <TITLE>Create Employee</TITLE>
    </HEAD>
    <BODY>
    <%
         Connection conn = null;
         Statement stmt = null;
         ResultSet rs = null;
         PreparedStatement ps = null;
         try {
              Class.forName("com.mysql.jdbc.Driver");
    conn = DriverManager.getConnection("jdbc:mysql://10.203.143.55:3306/bdaymgr" ,"root","mysql");
              String s=request.getParameter("UserList");
              String m=request.getParameter("month");
              String y=request.getParameter("year");
              String a=request.getParameter("amount");
              String sql="insert into contribution_info values(?,?,?,?)";
              ps=conn.prepareStatement(sql);
              ps.setString(1,s);
              ps.setString(2,m);
              ps.setString(3,y);
              ps.setString(4,a);
              ps.executeUpdate();
              System.out.print("Values Entered");
              %>
    <center>
    <FORM NAME = "form3" action="canBeAnyPage.jsp">
    Month :<br><input type=\"text\" name="month"><br>
    Year :<br><input type=\"text\" name="year"><br>
    Amount Paid :<br><input type=\"text\" name="amount"><br>
    <INPUT TYPE="SUBMIT" name="Submit" VALUE="Submit">
    </FORM>
    </center>
    <% stmt.close();
                   rs.close();
              catch(SQLException e){
                   System.out.println("Error : "+ e);
                   //response.sendRedirect("errorcreateSession.jsp");
    %>
    </BODY>
    </HTML>
    I dont know why but when i select one of the emp_id from the drop down list and press submit it does not show anything
    I can see the value of "UserList" in the url which is correct
    Probably there is some problem in my Admin.jsp page
    Please find time to have a look at my code
    Help would be really appreciated
    thanx

  • My e-mail has changed, but I purchashed some songs in iTunes using my old e-mail address as my account name... so when I try to play the sonngs I bought and paid for - it keeps asking me to authorize my PC first, but I don't remember the password!

    My e-mail has changed, but I purchashed some songs in iTunes using my old e-mail address as my account name... so when I try to play the sonngs I bought and paid for - it keeps asking me to authorize my PC first, but I don't remember the password! And since the old e-mail address is no longer active, I can't even chenge the password- becasue it's sends the link to do so via e-mail!  Even when I use the "ask personal questions" option to verify and it asks me for my date of birth, I put it in and it still won't acccept.

    Hello there, loupar.
    The following Knowledge Base article offers up just how to change your Apple ID for the App Store on your iOS device:
    iOS: Sign in with a different Apple ID in the iTunes Store, App Store, and iBooks Store
    http://support.apple.com/kb/ht1311
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

Maybe you are looking for