The Citrix XenApp 5.0 Feature Pack will be released 29th of September. One of the prerequisite are Sun Java 1.6.0.16. I have created a script for unattended installation.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
@echo off REM Install Java 1.6.0.16 REM ScriptFrameWork by Joe Shonk - www.theshonkproject.com REM Customized by Trond Eirik Haavarstein - www.xenappblog.com pushd %~dp0 cd .. set AppSourcePath=Source set AppConfigPath=Configuration set AppInstallPath=Scripts set AppHotfixesPath=Hotfixes set LogFile="%temp%Sun Java 16016.log" set Switches=/qn ALLUSERS=1 REBOOT="ReallySuppress" set MST=TRANSFORMS= cls echo. echo Installing Sun Java 1.6.0.16 echo. cd %AppSourcePath% start /wait jre-6u16-windows-i586.exe /s ADDLOCAL=jrecore REBOOT=suppress JAVAUPDATE=0 IEXPLORER=1 WEBSTARTICON=0 popd endlocal |