Java 6 Update 45 Download 64 Bit
|
| |||||||||||||||||||||||||||||||
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;
- DownloadtheOfflineversionsfor 32Bitand 64Bitinhttp://java.com/en/download/manual.jsp
- Runthe executableto extractthe binariesand getin C: Users% username%AppDataLocalLow Sun Java(ifyou have notchangedthe way).
- Copytheir folders(andjre1.6.0_XX_x64jre1.6.0_XX_)to a shared foldereg server software SunJava.
- 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
- 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.