Java 6 Update 45 Download 64 Bit

  1. Java 6 Update 45 Download 64-bit
  2. Download Java 6 Update 45 64 Bits

Over 800+ Predefined Software Templates.

Desktop Central helps you to silently install or uninstall software to servers and desktops from a central place, including commercial software like Microsoft Office, Adobe Acrobat etc, without user intervention. It also lets you to publish the list of approved software on a
self-service portal, making users install it themselves at their convenience.

Software Details Of Java(TM) 6 Update 45 (64-bit)

windows software

Software Name :Java(TM) 6 Update 45 (64-bit)
Version :6.0.450
Platform :Windows
Vendor :Oracle
Architecture :64-bit
Download Path :http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jre-6u45-windows-x64.exe
Silent Installation Switch :${sharedPath}jre-6u45-windows-x64.exe /s REBOOT=Suppress
Silent Uninstallation Switch :MsiExec.exe /X{26A24AE4-039D-4CA4-87B4-2F86416045FF} /qn

Software Management Features
Desktop Management Features
More>>
Mobile Device Mgmt (MDM)
Disclaimer: This webpage is intended to provide you information about silent installation/uninstallation switches for software/applications. The information is provided 'As Is' without warranty of any kind. The links provided point to pages on the vendors' websites. You can get more information by clicking the links to visit the relevant pages on the vendors' websites. Desktop Central is NOT endorsed by any of those vendors.

Java 6 Update 45 Download 64-bit

We don't have any change log information yet for version 8.0-build-271 of Java Runtime Environment 64-bit. Sometimes publishers take a little while to make this information available, so please check back in a few days to see if it has been updated. Java SE 6 Downloads. Go to the Oracle Java Archive page. Thank you for downloading this release of the Java TM Platform, Standard Edition Development Kit (JDK TM).The JDK is a development environment for building applications, applets, and components using the Java programming language.

Download Java 6 Update 45 64 Bits

Inmy researchI found severalposton how todeployJavain Windows environments.For my purposesthis is the methodI used:
The purposes:
SoSilentInstallJava;
DisableAuto-Update andAutoCheckUPDATEs;

  1. DownloadtheOfflineversionsfor 32Bitand 64Bitinhttp://java.com/en/download/manual.jsp
  2. Runthe executableto extractthe binariesand getin C: Users% username%AppDataLocalLow Sun Java(ifyou have notchangedthe way).
  3. Copytheir folders(andjre1.6.0_XX_x64jre1.6.0_XX_)to a shared foldereg server software SunJava.
  4. Createtwofiles withatexteditor(Notepad, Notepad+ +).ABatchfilewith the nameyou want (install.bat)and anotherdeployment.config.
    • BatchFileEditand put the followingcode:

@echo off
TITLE Sun J2SE Runtime Environment 6 Update 31..
@if %PROCESSOR_ARCHITECTURE%x86 goto 32BIT
@if %PROCESSOR_ARCHITECTURE%AMD64 goto 64BIT
@:64BIT
MSIEXEC /I 'jre1.6.0_31_x64jre1.6.0_31.msi' /qb /norestart /log %temp%/jre_%date%.log
XCOPY deployment.config %windir%SunJavaDeployment /Y
REG.EXE ADD 'HKLMSOFTWAREWow6432NodeJavaSoftJava UpdatePolicy' /v EnableJavaUpdate /t REG_DWORD /d 0 /f
REG.EXE ADD 'HKLMSOFTWAREWow6432NodeJavaSoftJava UpdatePolicy' /v EnableAutoUpdateCheck /t REG_DWORD /d 0 /f
cls
@goto END
@:32BIT
MSIEXEC /I 'jre1.6.0_31jre1.6.0_31.msi' /qb /norestart /log %temp%/jre_%date%.log
XCOPY deployment.config %windir%SunJavaDeployment /Y
REG.EXE ADD 'HKLMSOFTWAREJavaSoftJava UpdatePolicy' /v EnableJavaUpdate /t REG_DWORD /d 0 /f
REG.EXE ADD 'HKLMSOFTWAREJavaSoftJava UpdatePolicy' /v EnableAutoUpdateCheck /t REG_DWORD /d 0 /f
cls
@:END
EXIT

    • Editdeployment.configand put the followingtext:

deployment.javaws.autodownload='NEVER'
deployment.javaws.autodownload.locked

UpdateJava 6 Update 45 Download 64 Bit
  1. Run withadministrative privilegesBatchand hewill do the rest.

The file 'deployment.config' have configurations described in here http://docs.oracle.com/javase/6/docs/technotes/guides/deployment/deployment-guide/properties.html , and must be copied to %windir%SunJavaDeployment.

I Hope it helps how helped me.