Silent install of JRE (java 5 update 11) doesnot disable java update tab

I need to disable the Update tab in java pluign.
Manually it can be achieved by setting the HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Update\Policy
EnableJavaUpdate = 0.
But i want to achieve this through java script
I've read the doc... http://java.sun.com/j2se/1.5.0/docs/guide/deployment/deployment-guide/silent.html .
From this i tried silent install through command prompt by using the following.
jre-1_5_0_11-windows-i586-p.exe /s /v"/qn IEXPLORER=1 ADDLOCAL=ALL JAVAUPDATE=0 /L C:\jre.txt"
also tried
jre-1_5_0_11-windows-i586-p.exe /s /v"/qn ADDLOCAL=ALL JAVAUPDATE=0 JU=0 AUTOUPDATECHECK=0 /L C:\jre.txt"
but this successfully installs the jre but the update tab in the plugin is still shown.
Can anybody help me to disable the update tab of java plugin through javascript while installing the jre.
Thank you in advance.
Mamatha

This is a very poor solution. It looks extremely unprofessional, especially when you're relying on Java for your products. You want to install your product with Java (because it doesn't exist on many machines) and people think it's instant Spyware and bundle garbage. I have to agree with them (even though I'm a certified Java developer with 8+ years experience). Very poor...

Similar Messages

  • Silent install of JRE 7 with some options FAILS

    Hi,
    I'm trying to configure a silent install of JRE 7 using NSIS.
    The command line that launches the JRE installation is this:
    jre-7u4-windows-i586.exe /s INSTALLDIR="C:\Program Files (x86)\MyApp\Java" STATIC=1 /L "C:\Program Files (x86)\MyApp\log\jre_7_inst.log"
    But when launched (both from NSIS script and from command line) a windows popup explaining the options for launching the MSI installer tells me that there's something wrong with the .exe that launches the MSI with these options.
    My system is a Windows 7 64bits and I'm trying to install a JRE 32bits, as this is what's needed for my app.
    Any ideas of what can be failing?
    It would be much appreciated!
    Thanks in advance,
    Carlos

    go to tools\internet options\advanced\java vm etc.in IE
    and check out the check boxes as appropriate may be it helps u

  • Silent Install for JRE 1.4.2_02

    I am having trouble running a silent install of the JRE. I've referenced the following document, but have not had any luck. http://java.sun.com/j2se/1.4.2/docs/guide/plugin/developer_guide/silent.html
    The command I attempted to use is:
    j2re-1_4_2_02-windows-i586-p.exe /s /v
    Is this not the correct format? I tried many different versions of the command based on the silent install document, none worked. I still get prompted to accept the install.
    http://java.sun.com/products/archive/j2se/1.4.2_02/jre/install-windows.html

    This would be more appropriate forum for this question:
    http://forum.java.sun.com/forum.jsp?forum=14

  • Silent Install of JRE 1.4.2_02

    I am having trouble running a silent install of the JRE. I've referenced the following document, but have not had any luck. http://java.sun.com/j2se/1.4.2/docs/guide/plugin/developer_guide/silent.html
    The command I attempted to use is:
    j2re-1_4_2_02-windows-i586-p.exe /s /v
    Is this not the correct format? I tried many different versions of the command based on the silent install document, none worked. I still get prompted to accept the install.
    http://java.sun.com/products/archive/j2se/1.4.2_02/jre/install-windows.html

    I would like to execute a silent install of other java components, namely the Java Advanced Imaging package. I have tried a combination of the arguments to the .exe installers, but it only seems to unpackage to the temp directory, which gets deleted 30 seconds later and nothing gets installed.
    I can't really provide an .iss file, because the install location may change. So, I'd like to be able to provide all the necessary info at the command-line. Below is my command-line, anyone see anything overtly wrong?
    C:\Projects\thirdparty\jai\jai-1_1_2-lib-windows-i586-jdk.exe -a /s /v"/qn ADDLOCAL=ALL NETSCAPE6=1 MOZILLA=1 IEXPLORER=1 INSTALLDIR=%JAVA_HOME%/jre REBOOT=Suppress"
    Notes:
    If I don'g provide the -a option, it ignores the silent option and the install gui is displayed anyway.
    JAVA_HOME environment variable is currently set.
    Thanks.

  • Use j2sdk installer to silently install public JRE

    With the interactive installer there is an option to install a public JRE using the 1.4.2 j2sdk installer.
    Does anyone know the magic incantation to have the j2sdk installer install the public JRE silently?
    Actually, a comprehensive list of all of the magic parameters to the MSI installer would be great. I've been trying to beat the information out of google for a while now but it isn't helping. Thanks a lot.

    thank you, thank you for this post
    Here's what I did with it.
    @echo off
    echo %cd%
    set Initial_Dir=%cd%
    echo Below is the original directory
    echo %Initial_Dir%
    cd Java
    echo %cd%
    if exist "C:\Program Files\Java\jdk1.6.0_12\bin\java.exe" goto InstallJRE
    echo          -------------------------
    echo          Installing Java SDK 1.6.0_12
    echo           Please wait....
    echo          -------------------------
    cd JDK-1.6.0_12
    msiexec.exe /i "jdk1.6.0_12.msi" /qn /l*v "d:\jdk6-inst.log" ADDLOCAL=ALL IEXPLORER=1 JAVAUPDATE=0 AUTOUPDATECHECK=0 EULA=0 REBOOT=ReallySuppress
    echo Install completed
    setx JAVA_HOME "C:\Program Files\Java\jdk1.6.0_12" /M
    echo           current JAVA_HOME setting
    echo           %JAVA_HOME%
    echo           Java Home variable verification
    echo           "%JAVA_HOME%"\bin\java.exe -version
    "%JAVA_HOME%"\bin\java.exe -version
    set JAVA_HOME="C:\Program Files\Java\jdk1.6.0_12"
    %JAVA_HOME%\bin\java.exe -version
    :InstallJRE
    if exist "C:\Program Files\Java\jre6\bin\java.exe" goto InstallFCM
    echo          -------------------------
    echo          Installing JRE 1.6.0_12
    echo           Please wait....
    echo          -------------------------
    start /w msiexec.exe /i "C:\Program Files\Java\jdk1.6.0_12\jre.msi" /qn                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Silent Install of JRE 1.4.1 fails to check IE and Netscape browser entries

    I followed the Silent Installation web page article to install JRE 1.4.1. But strangely, while creating the response file and using custom install, the screen showing IE6 and Netscape6 browser plugin default checkmarks didn't show. I then installed the JRE using the response file following the article's directions. When I opened up the JRE Plugin in the Control Panel and went to the Browsers tab, both choices were not checked. Even using the -IExplorer and -Netscape6 parameters during install didn't make them checked. How do I do a silent automated install and have these browser choices checked and browser plugins installed?

    go to tools\internet options\advanced\java vm etc.in IE
    and check out the check boxes as appropriate may be it helps u

  • Java 6.18 Cannot disable auto update checks

    JAVA Client Version 6 Update 18 Unattended Install
    Here's the command line I'm using:
    jre-6u18-windows-i586-s.exe/qn /l*v c:\java618TestInstall.log AUTOUPDATECHECK=0 JAVAUPDATE=0
    I see in the install logs that the AUTOUPDATECHECK and JAVAUPDATE property values do in fact, get changed to 0. However, when I open up the JAVA console from the control panel on the target machine, the "Check for Updates Automatically" check box is still checked. Am I hitting the wrong property? If so, which one do I need to disable this?
    My users get frequently annoyed with the notifications popping up. Then they try to install the update and find that they can't because they don't have administrator privileges. I would very much rather push these out quarterly and not have to hear from them about trying to install the updates or receiving the notifications.
    Many thanks.

    Please note this is a forum for the Java Desktop System, the GNOME-based desktop environment that ships with Solaris 10 and OpenSolaris.
    For Java installation issues, you probably want the [Java Install/Autoupdate Forum|http://forums.sun.com/forum.jspa?forumID=14].

  • I have a Mac running OS X 10.6.8 and have installed all updates and disabled Java Applets.  Do I need to put virus protection on this computer and, if so, any recommendations?

    I have a Mac running OS X 10.6.8 and have installed all updates and have disabled Java Applets.  Do I need to install antivirus software and, if so, do you have a recommendation on what works best.

    Mac OS X versions 10.6.7 and later have built-in detection of known Mac malware in downloaded files. The recognition database is automatically updated once a day; however, you shouldn't rely on it, because the attackers are always at least a day ahead of the defenders. In most cases, there’s no benefit from any other automated protection against malware.
    The most effective defense against malware is your own intelligence. All known malware that affects a fully-updated installation of Mac OS X 10.6 or later takes the form of trojans, which can only work if the victim is duped into running them. If you're smarter than the malware attacker thinks you are, you won't be duped. That means, primarily, that you never install software from an untrustworthy source. How do you know a source is untrustworthy?
    Any website that prompts you to install a “codec,” “plug-in,” or “certificate” that comes from that same site, or an unknown site, merely in order to use the site, is untrustworthy.
    A web operator who tells you that you have a “virus,” or that anything else is wrong with your computer, or that you have won a prize in a contest you never entered, is trying to commit a crime with you as the victim.
    “Cracked” versions of commercial software downloaded from a bittorrent are likely to be infected.
    Software with a corporate brand, such as Adobe Flash Player, must be downloaded directly from the developer’s website. No intermediary is acceptable.
    Disable Java (not JavaScript) in your web browser(s). Few websites have Java content nowadays, so you won’t be missing much. This setting is mandatory in Mac OS X 10.5.8 or earlier, because Java in those versions has bugs that make it unsafe to use on the Internet. Those bugs will probably never be fixed, because those older operating systems are no longer being maintained by Apple. Migrate to a newer version of the Mac OS as soon as you can.
    Follow these guidelines, and you’ll be as safe from malware as you can reasonably be.
    Never install any commercial "anti-virus" products for the Mac, as they all do more harm than good. If you need to be able to detect Windows malware in your files, use ClamXav — nothing else.

  • Response Code in Silent Install

    What is the response code supposed to be in the setup log?
    Mine was -3

    Hi,
    I performed a silent install of jre 1.4.1.I happen to get result code as -3.If you were successful in fixing the issue..could you please share it.

  • Silent uninstall of JRE

    After silently installing a JRE, how do I do to silently uninstall any JRE present (without knowing the install directory).
    Thanks in advance,
    Ludovic Russo.

    On my uninst.isu it looks messed up:
    q� ) Stirling Technologies, Inc. (c) 1990-1995��X
    d ) v��&H��&     �0�e2zlC!�k-�V6
    zV?1ai#bVW�
    f ) ���&H��&     �0�e2zlC!�k-�V6
    zV?1aa#bVW�0 ��&J��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�YO ^��&H��&/�0�e2zlC!�k-�V6
    zV?1aWb^)w�@4��>�l�=2��.��$<��-y�-�T�����X���8 ���&K��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�h�zS ���&H��&3�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)j�n�$X���: F��&K��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�w�#n��U ���&H��&5�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)j�!&y�{�W�8 ���&K��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�j| lS ��&H��&3�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)s�u�X���; j��&K��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�#h{U�V ���&H��&6�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)y�t��@���a��= ���&K��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�(2��@:�l9A��X 9��&H��&8�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)~�=0��6���>9b��a4 d��&J��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36�P ���&H��&0�hEwj@4�`>�lo=2�GyO�kC<��2:Go:9��-��2 ��E)q�)Xz�W� ��:;b��aA ,��&K��&!�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��0��2;���0��\ o��&H��&<�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)h�E��69U�=9b��aA ���&K��&!�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��1�� 1���0��\ ��&H��&<�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)q�30v�30U�=9b��aA n��&K��&!�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��q�G.Xv�0��\ ���&H��&<�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)u�.���T�=9b��aA ��&K��&!�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��q�G.Xw�0��\ V��&H��&<�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)u�.���T�=9b��aE ���&K��&%�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��q�G.Xx,W�0��` ���&H��&@�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)u�.�� X� U�=9b��aA Y��&K��&!�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��q�G.Zw�0��\ ���&H��&<�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)u�.���T�=9b��aA ���&K��&!�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��v�Wu�0��\ 8��&H��&<�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)u� p��T�=9b��a< ���&K��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��2D�l59�W ���&H��&7�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)��E���=X���> ,��&K��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��32��D���Y j��&H��&9�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)��2;��@0��W�< ���&K��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��4:�l59�W ��&H��&7�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)��>���=X���= \��&K��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��50���0��X ���&H��&8�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)��A?U�=9b��aB ���&K��&"�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��5A��@0��E���] E��&H��&=�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)��0@��<2��59��W�D ���&K��&$�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��7<��>.��82�z59�_ ���&H��&?�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)��?A��?.��C���=X���< =��&K��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��9=�l59�W }��&H��&7�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)��:���=X���> ���&K��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��9=��7���Y ��&H��&9�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)��C<��59��W�@ w��&K��& �aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��:<��C�Xs59�[ ���&H��&;�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)��D2�����=X���= ��&K��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��;.���0��X O��&H��&8�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)��G.U�=9b��a= ���&K��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��;.���1��X ���&H��&8�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)��G.U�I2b��a> D��&K��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��;.��H���Y ���&H��&9�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)��G.��6E��W�= ���&K��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��;.���0��X ��&H��&8�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)��HAU�=9b��a= v��&K��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��;0���0��X ���&H��&8�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)��@CU�=9b��a= ��&K��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��;1���0��X N��&H��&8�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)��H=U�=9b��a= ���&K��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��;=���0��X ���&H��&8�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)��64U�=9b��a@ G��&K��& �aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��;=��D Ys59�[ ���&H��&;�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)��:;�����=X���A ���&K��&!�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��;=��9.���0��\ )��&H��&<�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)��:@��C2U�=9b��a? ���&K��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��;@��?1U�Z ���&H��&:�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)��@B���0���a��@ $��&K��& �aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��<2��@<�s6E�[ e��&H��&;�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)��JA��=���6X���? ���&K��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��>@��CAU�Z ���&H��&:�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)��G0���0���a��< X��&K��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��?2�l59�W ���&H��&7�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)��E���=X���A ���&K��&!�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��A.��24���0��\ C��&H��&<�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)��48��6?U�=9b��aH ���&K��&(�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��A9��:;��=�Y}0�Y�4=�c ���&H��&C�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)��F4��4=��������=X���C M��&K��&#�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��A<��4F��@9U�^ ���&H��&>�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)��=6��E<���1���a��= ���&K��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��C:���1��X ,��&H��&8�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)��:1U�I2b��aD ���&K��&$�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��C:��64��E?�z6E�_ ���&H��&?�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)��:?��:@��J���6X���B 0��&K��&"�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��E;��6@��G���] q��&H��&=�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)��2:��6?��6E��W�? ���&K��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��G2��7FU�Z ��&H��&:�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)��C6���0���a��< ���&K��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��K6�l59�W ���&H��&7�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)��A���=X���< P��&J��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��9<��A<�X E��&H��&8�hEwj@4�`>�lo=2�GyO�kC<��2:Go:9��-��2 ��E)q�)Xz�W� ��:;��@A��@Ab��aG ���&K��&'�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��9<��A<��)B��82U�b ���&H��&B�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)��E@��E)�D.���@���a��D ���&K��&$�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�36��9<��A<��;C�z59�_ ���&H��&?�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��?)��E@��E)��>���=X���4 }��&J��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6�P '��&H��&0�hEwj@4�`>�lo=2�GyO�kC<��2:Go:9��-��2 ��E)q�)Xz�W� ��:/b��aM ���&K��&-�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��4<��6;�rEF��D���@=��E6��h ���&H��&H�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��?A��E���A2��A?��6?��6@b��aI B��&K��&)�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��79��@?��A���@=��E6��d ���&H��&D�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��2C��>.��A?��6?��6@b��aD ���&K��&$�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��7<���<��A2��:2�_ 7��&H��&?�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��?AU�C<��CA��DX���L ���&K��&,�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��7<���<��A2��:2��X� Wg ���&H��&G�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��?AU�C<��CA��D�m�W�X���G M��&K��&'�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��7<���<��A2��:2�� �b ���&H��&B�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��?AU�C<��CA��D����a��G ���&K��&'�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��7<���<��A2��:2���b C��&H��&B�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��?AU�C<��CA��D����a��G ���&K��&'�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��7<���<��A2��:2��     �b ���&H��&B�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��?AU�C<��CA��D����a��G T��&K��&'�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��7<���<��A2��:2��
    �b ���&H��&B�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��?AU�C<��CA��D����a��G ��&K��&'�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��7<���<��A2��:2���b J��&H��&B�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��?AU�C<��CA��D����a��G ���&K��&'�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��7<���<��A2��:2���b ���&H��&B�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��?AU�C<��CA��D����a��G [��&K��&'�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��7<���<��A2��:2���b ���&H��&B�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��?AU�C<��CA��D����a��M ��&K��&-�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��7<���<��A2��:2��K5U�%U�h `��&H��&H�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��?AU�C<��CA��D����{���a��aJ ���&K��&*�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��7<���<��A2��:2��K5���e ��&H��&E�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��?AU�C<��CA��D���0!~�W�= `��&K��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��;.���8��X ���&H��&8�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��HAU�:/b��a< ���&K��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��;C�l43�W ;��&H��&7�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��>���8X���B ���&K��&"�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��;C�l9=��7���] ���&H��&=�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��>���C<��EE��W�A ;��&K��&!�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��;C�l;0���@��\ ���&H��&<�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��>���@CU�IAb��aC ���&K��&#�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��DB��D.��8;U
    �^ !��&H��&>�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��??��D6���6���a��? � �&K��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��EG��A=��Z ���&H��&:�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��>.��:;���a��; �&J��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��2=��W M �&H��&7�hEwj@4�`>�lo=2�GyO�kC<��2:Go:9��-��2 ��E)q�)Xz�W� ��:/��A=��EX���8 /�&J��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��4:�T � �&H��&4�hEwj@4�`>�lo=2�GyO�kC<��2:Go:9��-��2 ��E)q�)Xz�W� ��:/��>:b��aB F�&K��&"�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��4:��l�*'U�] ��&H��&=�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��>)j�%���<��W�@ ��&K��& �aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��4:��h��<�[ -�&H��&;�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��>)n�&U�7X���F ��&K��&&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��4:��u���U�a ��&H��&A�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��>)s�h�0n��<��W�@ S�&K��& �aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��4:��Dn��<�[ i�&H��&;�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��>)��U�7X���8 ��&J��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��6E�T ��&H��&4�hEwj@4�`>�lo=2�GyO�kC<��2:Go:9��-��2 ��E)q�)Xz�W� ��:/��IAb��a: �&J��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��7<��V ��&H��&6�hEwj@4�`>�lo=2�GyO�kC<��2:Go:9��-��2 ��E)q�)Xz�W� ��:/��@;���a��P N�&K��&0�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��7<��D)s�46��$.��#2��=.��EA�k O�&H��&K�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��?A��B��5.z�?@y�8B��C���7X���; ��&J��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��::�
    �W ��&H��&7�hEwj@4�`>�lo=2�GyO�kC<��2:Go:9��-��2 ��E)q�)Xz�W� ��:/��>.��DX���C ��&J��&#�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��::��6@��F?��_ ��&H��&?�hEwj@4�`>�lo=2�GyO�kC<��2:Go:9��-��2 ��E)q�)Xz�W� ��:/��>.��D)��C@��DX���V �&K��&6�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��::��6@��F?��C@��F?��C@U�C<��CA��q o�&H��&Q�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��24��-0��D<��-0��D<���<��A2�;2�W�T ��&K��&4�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��::��6@��F?��C@��?C��:1Z�I Y�86�o =�&H��&O�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��24��-0��D<��-6��29��������7X���[ ��&K��&;�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��::��6@��F?��C@��:;Z�0��J��A Y��T
    �v      �&H��&V�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��24��-0��D<��-D�����@=��C<��EZ�3�G�a��] �     �&K��&=�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��::��6@��F?��C@��:;Z�0��J��C<��EZ��3��x �     �&H��&X�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��24��-0��D<��-D�����@=��@�B YR�TH:3b�a[ c
    �&K��&;�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��::��6@��F?��C@��:;Z�0��<��A Y��T
    �v �
    �&H��&V�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��24��-0��D<��-D�����:;��C<��EZ�3�G�a��] <�&K��&=�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��::��6@��F?��C@��:;Z�0��<��C<��EZ��3��x ��&H��&X�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��24��-0��D<��-D�����:;��@�B YR�TH:3b�a[ �&K��&;�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��::��6@��F?��C@��:;Z�0��6��A Y��T
    �v p�&H��&V�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��24��-0��D<��-D�����@C��C<��EZ�3�G�a��] �
    �&K��&=�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��::��6@��F?��C@��:;Z�0��6��C<��EZ��3��x )
    �&H��&X�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��24��-0��D<��-D�����@C��@�B YR�TH:3b�a= ��&J��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��D2��C6� Y �
    �&H��&9�hEwj@4�`>�lo=2�GyO�kC<��2:Go:9��-��2 ��E)q�)Xz�W� ��:/��60��:A��W�E -�&K��&%�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��D2��C6��-0��6?��` x�&H��&@�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��4B��EF��20��E@b��aI ��&K��&)�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��D2��C6��-7��2���=6� d +�&H��&D�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��4B��EF��2C��A<��4Fb��aK �&K��&+�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�=6��D2��C6��-7��2���4B� f ��&H��&F�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��3)��4B��EF��2C��D2��C6���a��4 g * C:\Program Files\JavaSoft\JRE\1.3.1_03\tmpP Z�&H��&0�hEwj@4�`>�lo=2�GyO�kC<��2:Go:9��-��2 ��E)q�)Xz�W� ��>=b��a= ��&K��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�E:��:�^��;��X ��&H��&8�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��A)��     ;U�FAb��a= M�&K��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�E:��;.���;��X ��&H��&8�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��A)��H@U�FAb��a; ��&K��&�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�E:��CAU�V %�&H��&6�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��A)���;���a��A ��&K��&!�aM!?�_C.�6�kD)qnG.z�7A�e#�S��TZ0�Y�E:��F;��F;���1��\ ��&H��&<�hEwj@4�`>�lo=2�GbW)w�@4��>�l�=2��.��$<��-y�-�T����)��A)��4?��45U�I2b��a2 �&K��&�aM(u< $z[%tV-,p`%wH�pm-B��CB��9���M C�&H��&-�0�e2wj@4�`>�lo=2�GbW)~dvy$){n�� {�!U���?0��?0��6E��W�;     h  1 C:\Program Files\JavaSoft\JRE\1.3.1_03\lib\rt.jarV     e  L data:Program Files:CF;C:\Program Files\JavaSoft\JRE\1.3.1_03\lib\rt.jar;1;0;
    Is there something wrong? I can't really understand it.
    Thanks

  • Install Java plugin for IE without manual update or install

    Hi,
    I have a client machine with JRE installed. Now i see the problem that java plugin is not installed in IE. Is there anyway i could manually register java plugin for IE without using installer or java update ? would it be possible to use command line argument or such alternative please let me know.

    I would like to find a way to allow a user without
    administrative rights to install the Java-Plugin for
    using Java-Applets. As far as I understood, the
    plugin can be installed in a silent way withou
    registry modifiactions. Is this working for users
    without admin rights?Could anyone please explain, why it is so difficult for Sun to create an installation package for user without admin rights? The whole "GetJava"-program doesn't make any sense for ordinary users if they get the JRE downloaded seamlessly and then the installation fails due to missing admin rights. This way Java would never succeed on the desktop.
    Andr�

  • Possible to Silently Install Coldfusion 9 Updates?

    Hello,
    I need to know if it is possible to silently install CF9 updates, such as 9.0.1. I am following this ColdFusion document located here -> http://blogs.adobe.com/cfdoc/2009/10/performing_a_silent_installation_of_coldfusion_9.html for installing CF 9, but now I need to silently install the 9.0.1 update. This would need to work on Linux and Windows.
    So, the website below works for vanilla CF 9, but doesn't seem to work for 9.0.1 . I have tried to edit the installer.properties file with the questions the 9.0.1 installer asks you, but it does not workl. I am attempting to do this on a RHEL 5 system at the moment. Once I run "./ColdFusion_update_901_WWEJ_linux.bin -f installer.properties" this is the output on the sreen:
    Preparing to install...
    Extracting the JRE from the installer archive...
    Unpacking the JRE...
    Extracting the installation resources from the installer archive...
    Configuring the installer for this system's environment...
    Launching installer...
    Preparing SILENT Mode Installation...
    ===============================================================================
    Adobe ColdFusion 9.0.1                           (created with InstallAnywhere)
    There is stays and hangs with a blinking cursor. It will never finish. Please let me know if you have any information about if this is possible or if you have successfully done this before.. Thank you.

    I was able to generate a response file using the -r option like so:
    $ sudo ./ColdFusion_update_901_WWEJ_linux.bin -i console -r
    This resulted in the following installer.properties file:
    # Thu Dec 08 18:15:26 PST 2011
    # Replay feature output
    # This file was built by the Replay feature of InstallAnywhere.
    # It contains variables that were set by Panels, Consoles or Custom Code.
    #Configure Installation
    INSTALL_TYPE_RESULTS=\"Server configuration\",\"\",\"\"
    #Configure ColdFusion 9
    USER_INSTALL_DIR=/opt/coldfusion9
    #Web CFIDE Directory Location
    USER_MAGIC_FOLDER_1=\"/opt/coldfusion9/wwwroot/CFIDE\"
    I then attempted a silent install using with and without this response file like so:
    $ sudo ./ColdFusion_update_901_WWEJ_linux.bin -i silent [-f installer.properties]
    Each time I attempted a silent install the installer would get stuck in a loop generate the following error until killed:
    Install Action:           Jump To: Next Validate_CFIDE_Directory -- Prev: NO JUMP
                              Status: ERROR
                              Additional Notes: ERROR - java.lang.StackOverflowError
    Install Action:           InstallAnywhere Variable
                              Status: SUCCESSFUL
    Install Action:           InstallAnywhere Variable
                              Status: SUCCESSFUL
    Install Action:           Jump To: Next Validate_CFIDE_Directory -- Prev: NO JUMP
                              Status: ERROR
                              Additional Notes: ERROR - java.lang.StackOverflowError
    I'm able to run the installer fine in the interactive console mode. Any input anyone can provide would be very useful. Thanks!

  • JRE 1.4 Silent Install does not install

    For testing purposes I downloaded the JRE installer (15+ MB) onto the Windows PC I wanted to test out the silent install on. I'm referencing the notes posted here: http://java.sun.com/j2se/1.4.2/docs/guide/plugin/developer_guide/silent.html
    At the MS-DOS prompt I type the following command and nothing happens. I don't get any errors or anything and nothing seems to be running in the background. It just executes the command and returns to a blinking cursor.
    From this directory on my computer c:\Program Files\CF EMS\ I execute the following:
    j2re-1_4_2_08-windows-i586-p.exe /s /v "/qn ADDLOCAL=ALL IEEXPLORER=1 INSTALLDIR=c:\jre1.4 /L jresetup.log"
    Does anyone know what I'm doing wrong? Nothing ever gets installed.
    NOTE: If I double-click on the .exe installer, it runs the GUI installer and completes successfully so I know the executable works.
    Thank you for any help.
    - Billy -

    Figured it out for those of you that run into this issue... I needed to read the documentation a little more carefully...
    I originally had the following command j2re-1_4_2_08-windows-i586-p.exe /s /v "/qn ADDLOCAL=ALL IEXPLORER=1 INSTALLDIR=c:\jre1.4 /L jresetup.log"
    I am using the offline installer. If you read the NOTES section in http://java.sun.com/j2se/1.4.2/docs/guide/plugin/developer_guide/silent.html you'll see in #3 it states that there should be no space between the /v and the "/qn in the command if you are using the Windows Offline Installation.
    So the correct command is:
    j2re-1_4_2_08-windows-i586-p.exe /s /v"/qn ADDLOCAL=ALL IEXPLORER=1 INSTALLDIR=c:\jre1.4 /L jresetup.log"

  • Silent install of JDK, not JRE

    Hi,
    and sorry, if this had already been covered here (though I could not find it via search).
    For the installation procedure of our own software, I need to install the JDK (not the JRE) 1.4.2_03 first in silent mode (on Windows 2000). I tried to execute the following:
    j2sdk-1_4_1_03-windows-i586.exe /s /v '/qn ADDLOCAL=ALL INSTALLDIR=C:\silent REBOOT=Suppress'. Since I read a hint for JRE silent install, I tried with and without a space after /v, but the install just comes up normally, asking for installation directory, etc, so no silent install!
    Anyone having a hint in that direction? Maybe it's not possible at all with JDK?
    Thanks in advance
    Jens

    Here it's the method to do silent install :
    start /w j2sdk-1_4_2_10-windows-i586-p.exe /s /v"/qn ADDLOCAL=ALL INSTALLDIR=D:\java\jre"Please notify after the /v switch : between it and the quote, there is no space.
    This's the command line to do a silent uninstall :
    start /W j2sdk-1_4_2_10-windows-i586-p.exe /s /v"/qn REBOOT=Suppress" /xYou must have the original j2sdk installer on the drive. I have seen a uninstall method with the msiexec installer but it doesn't work... really shade. Because i think keep up the original installation package to perform a uninstallation's a space waste.
    Sorry to reply to this old thread... and sorry for my ugly / bad english.

  • HT5682 April 22, just installed the latest update to fix the Java problem, it does not work.

    About a week ago I installed a MAC update. I discovered that I was unable to play POGO games. I know that is not up there with all other uses of MAC... let's get back on track here. I have uninstalled and reinstalled, and reset preferences at least 6 times to get JAVA back.
    Some of my new BFF sites:
    Java for OS X 2013-002: How to re-enable the Apple-provided Java SE 6 web plug-in and Web Start functionality.
    Why is Java not working on my Mac?|EA Help
    Re: Bridge - Page 2 - Answer HQ   Java POGO
    Java for OS X 2013-003    get applet from Oracle
    My Intel MAC  circa 2009, is  running MAC OS X Lion  10.7.5   Safari 6.0.4
    Today I received another update from Apple stating it would provide the answer to POGO 6 and you can select certain sites that can be accessed.  
    This also was a FAIL!
    I now know the steps, can access TERMINAL without shaking, have learned to use GO to access UTILITIES.  I still end up with JAVA not recognizing that their software has a place in my heart and I truly hope on my computer soon.
    I have been playing a horrible game of Solitaire on another site.
    Are there others out there with this problem or is it just me? Can anyone suggest anything else?

    Thank you BDAua. This is what I typed and the reply from Terminal
    java -version
    java version "1.6.0_45"
    Java(TM) SE Runtime Environment (build 1.6.0_45-b06-451-11M4406)
    Java HotSpot(TM) 64-Bit Server VM (build 20.45-b01-451, mixed mode)
    BTW - this application does NOT show up in the Applications folder and I consider that a bit odd.
    I also  tried typing Java for my computer to search for and this is what I got under
    Overview:
    PID: 944
    Host: localhost
    Main class: <unknown>
    Arguments: <none>
    JVM: Java HotSpot(TM) 64-Bit Server VM (20.45-b01-451, mixed mode)
    Java: version 1.6.0_45, vendor Apple Inc.
    Java Home: /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home
    JVM Flags: <none>
    Heap dump on OOME: enabled
    I hope something is helpful within all of this info!

Maybe you are looking for

  • My iPhone 4 doesn't have update software button in general. How do i update my software?

    My iPhone 4 doesn't have update software button in general. How do i update my software?

  • HOW TO PRINT ONE PAGE OR "TILE" OF A MULTI TILE DOC??

    I'm looking to print just one page or tile of a large document. I want to print the pdf at full size, yet only print one of the tiles (preferably the one I choose!). In InDesign you can set the rulers and it will print from where that ruler is and th

  • Price for battery replacement at apple (2010 model)

    Hello forum. I've got a Macbook pro (model 2010), and are wondering what the price are for replacing a battery at apple repairs, outside the warrenty period (i've bought the MBP at apple.com)? And are there any danes that have tried getting a battery

  • Can u rectify the error  in merge statement in sql

    hi to all, i had created a duplicate table of emp with the name of copy_emp with no records. by using merge statement i want to update the existing rows and insert new rows into copy_emp table as follows ...... merge into copy_emp c using emp e on(c.

  • AMule crashes

    Since last update, aMule crashes after a while running. I opened it with terminal, and it throws the following message: Terminated after throwing an instance of 'std::bad_alloc' what(): std::bad_alloc * Could not get symbol names for backtrace backtr