WordPress.com



1. Prerequisite Script# =======================================## XENAPP 5 2003 FR3 INSTALLATION SCRIPTS## This script has been designed for <INSERT CUSTOMER NAME> # XenApp 5 2003 FR3 installation and is part of a series # of scripts to be run in order to complete an # unattended installation of Citrix XenApp 5 for 2003 ## =======================================# # NUMBER 1: PREREQUISITES## =======================================# =======================================# 1. Create Log folder# =======================================New-Item -ItemType directory -Path C:\Install\Logs# =======================================# 2. Java 1.6.14# =======================================$ConfigArgs = @(????? '/passive',????? '/norestart',????? '/log C:\Install\Logs\Java1614.txt')Start-Process 'C:\Install\XenApp_5_FR2\Support\JRE1.6\jre-6u14-windows-i586.exe' $ConfigArgs -wait# =======================================# 3. Java 1.5.09# =======================================$ConfigArgs = @(????? '/passive',????? '/norestart',????? '/log C:\Install\Logs\Java1509.txt')Start-Process 'C:\Install\XenApp_5_FR2\Support\JRE1.5\jre-1_5_0_09-windows-i586-p.exe' $ConfigArgs -wait# =======================================# 4. Visual J# 2.0# =======================================# ----------------# 4A. EXTRACT MSI# ----------------$ConfigArgs = @(????? '/T:C:\Install\tmp',????? '/C')Start-Process 'C:\Install\XenApp_5_FR2\Support\JSharp20\vjredist20se_x86.exe' $ConfigArgs -wait# ------------------# 4B. INSTALL J#2.0# ------------------$ConfigArgs = @(????? '/qb!',????? '/l C:\Install\Logs\J#2.txt')Start-Process 'C:\Install\tmp\install.exe' $ConfigArgs -wait# ----------------------# 4C. DELETE TMP FOLDER# ----------------------Remove-Item -Path C:\Install\tmp -Recurse -Force# =======================================# 5. Terminal Services # =======================================# ---------------------------------------------------------------# !! Make sure you have already created sysoc.txt answer file !!# ---------------------------------------------------------------$ConfigArgs = @(????? '/i:C:\windows\inf\sysoc.inf',????? '/u:C:\Install\sysoc.txt',????? '/r',????? '/q')Start-Process 'C:\WINDOWS\System32\sysocmgr.exe' $ConfigArgs -waitRestart-Computer -Force2. Install XenApp 5# =======================================## XENAPP 5 2003 FR3 INSTALLATION SCRIPTS## This script has been designed for <INSERT CUSTOMER NAME> # XenApp 5 2003 FR3 installation and is part of a series # of scripts to be run in order to complete an # unattended installation of Citrix XenApp 5 for 2003 ## =======================================# # NUMBER 2: XENAPP 5## =======================================# =======================================# 1. Install XenApp 5 and add server #??? to farm# =======================================Start-Process C:\Install\XenApp_5_FR2\Support\Install\UnattendedInstall.exe '"C:\Install\XenApp_5_FR2\XenApp Server\X86\mps.msi"','C:\Install\XenApp5UnattendedConcise.txt','CTX_MF_ODBC_PASSWORD="<ENTER SERVICE ACCOUNT PASSWORD HERE>"' -WaitRestart-Computer -Force3. Console Install# =======================================## XENAPP 5 2003 FR3 INSTALLATION SCRIPTS## This script has been designed for <INSERT CUSTOMER NAME> # XenApp 5 2003 FR3 installation and is part of a series # of scripts to be run in order to complete an # unattended installation of Citrix XenApp 5 for 2003 ## =======================================# # NUMBER 3: CONSOLES## =======================================# =======================================# 1. Delivery Services Console# =======================================$ConfigArgs = @(????? '/silent',????? '/l C:\Install\Logs\DSC.txt')Start-Process 'C:\Install\XenApp_5_FR2\Administration\Delivery Services Console\CtxInstall.exe' $ConfigArgs -wait# =======================================# 2. Advanced Management Console# =======================================$ConfigArgs = @(????? '/passive',????? '/norestart',????? '/log C:\Install\Logs\CMC.txt')Start-Process 'C:\Install\XenApp_5_FR2\Administration\Advanced Configuration\CMC.msi' $ConfigArgs -wait# =======================================# 3. Register DLL due to .NET 4 issue# =======================================# --------------------------------------------# --------------------------------------------$ConfigArgs = @(????? '/codebase "C:\Program Files\Common Files\Citrix\Presentation Server - Administration Snap-in\PSE.Core.dll"')Start-Process 'C:\WINDOWS\\Framework\v2.0.50727\regasm' $ConfigArgs -wait4. Post Installation Tasks# =======================================## XENAPP 5 2003 FR3 INSTALLATION SCRIPTS## This script has been designed for <INSERT CUSTOMER NAME> # XenApp 5 2003 FR3 installation and is part of a series # of scripts to be run in order to complete an # unattended installation of Citrix XenApp 5 for 2003 ## =======================================# # NUMBER 4: POST-INSTALLATION TASKS## =======================================# =======================================# 1. Install UPHClean# =======================================$ConfigArgs = @(????? '/passive',????? '/norestart',????? '/log C:\Install\Logs\UPHClean.txt')Start-Process 'C:\Install\UPHClean-Setup.msi' $ConfigArgs -wait# =======================================# 2. Install HMR 2.0# =======================================$ConfigArgs = @(????? '/passive',????? '/norestart',????? '/log C:\Install\Logs\HMR.txt')Start-Process 'C:\Install\XenApp_5_FR2\Support\HMR\HMRTestPack2.msi' $ConfigArgs -wait# =======================================# 3. Install HRP5# =======================================$ConfigArgs = @(????? '/passive',????? '/norestart',????? '/log C:\Install\Logs\HRP5.txt')Start-Process 'C:\Install\XenApp_5_FR2\XenApp Server\X86\PSE450W2K3R05.msp' $ConfigArgs -wait# =======================================# 4. Install FR2 Enabler# =======================================$ConfigArgs = @(????? '/passive',????? '/norestart',????? '/log C:\Install\Logs\FR2Enabler.txt')Start-Process 'C:\Install\XenApp_5_FR2\Licensing\XenApp5_FP2_Enabler.msi' $ConfigArgs -wait# =======================================# 5. Install FlashHDX# =======================================$ConfigArgs = @(????? '/passive',????? '/norestart',????? '/log C:\Install\Logs\FlashHDX.txt')Start-Process 'C:\Install\XenApp_5_FR2\HDX MediaStream for Flash\X86\CitrixHDXMediaStreamForFlash-ServerInstall.msi' $ConfigArgs -wait# =======================================# 6. Install MS Hotfix KB923845# =======================================# ----------------------------------------# This is an update for BITS (2.5) required for SCCM# ----------------------------------------$ConfigArgs = @(????? '/quiet',????? '/noreboot',????? '/log C:\Install\Logs\MSHotfix.txt')Start-Process 'C:\Install\WindowsServer2003-KB923845-x86-ENU.exe' $ConfigArgs -waitRestart-Computer -Force5. HRP7# =======================================## XENAPP 5 2003 FR3 INSTALLATION SCRIPTS## This script has been designed for <INSERT CUSTOMER NAME> # XenApp 5 2003 FR3 installation and is part of a series # of scripts to be run in order to complete an # unattended installation of Citrix XenApp 5 for 2003 ## =======================================# # NUMBER 5: HOTFIX ROLLUP PACK 7## =======================================# =======================================# 1. Install Hotfix Rollup Pack 7# =======================================$ConfigArgs = @(????? '/passive',????? '/norestart',????? '/log C:\Install\Logs\HRP7.txt')Start-Process 'C:\Install\HRP7\PSE450W2K3R07.msp' $ConfigArgs -waitRestart-Computer -Force6. ?Installs post-HRP7 hotfixes# =======================================## XENAPP 5 2003 FR3 INSTALLATION SCRIPTS## This script has been designed for <INSERT CUSTOMER NAME> # XenApp 5 2003 FR3 installation and is part of a series # of scripts to be run in order to complete an # unattended installation of Citrix XenApp 5 for 2003 ## =======================================# # NUMBER 6: POST HRP7 HOTFIXES## =======================================# =======================================# 1. Install Hotfixes# =======================================Get-ChildItem -path C:\Install\Citrix\ -Filter *.msp | Sort-Object –Property Name | ForEach-Object {Start-Process –FilePath $_.PSPath –ArgumentList /passive, /norestart –Wait}Restart-Computer -Force7.? Installs FR3# =======================================## XENAPP 5 2003 FR3 INSTALLATION SCRIPTS## This script has been designed for <INSERT CUSTOMER NAME> # XenApp 5 2003 FR3 installation and is part of a series # of scripts to be run in order to complete an # unattended installation of Citrix XenApp 5 for 2003? ## =======================================# # NUMBER 7: XENAPP 5 2003 FR3## =======================================# This scripts installs the updates to make XenApp 5 FR3.# =======================================# 1. Delivery Services Console# =======================================$ConfigArgs = @(????? '/silent',????? '/l C:\Install\Logs\DSC2.txt')Start-Process 'C:\Install\XA5_2003_FR3\Delivery Services Console\CtxInstall.exe' $ConfigArgs -wait# =======================================# 2. Flash HDX# =======================================$ConfigArgs = @(????? '/passive',????? '/norestart',????? '/log C:\Install\Logs\FlashHDX2.txt')Start-Process 'C:\Install\XA5_2003_FR3\HDXFlash110WX86\CitrixHDXMediaStreamForFlash-ServerInstall-x86.msi' $ConfigArgs -waitRestart-Computer –Force4. Post Installation Tasks# =======================================## XENAPP 5 2003 FR3 INSTALLATION SCRIPTS## This script has been designed for <INSERT CUSTOMER NAME> # XenApp 5 2003 FR3 installation and is part of a series # of scripts to be run in order to complete an # unattended installation of Citrix XenApp 5 for 2003 ## =======================================# # NUMBER 4: POST-INSTALLATION TASKS## =======================================# =======================================# 1. Install UPHClean# =======================================$ConfigArgs = @(????? '/passive',????? '/norestart',????? '/log C:\Install\Logs\UPHClean.txt')Start-Process 'C:\Install\UPHClean-Setup.msi' $ConfigArgs -wait# =======================================# 2. Install HMR 2.0# =======================================$ConfigArgs = @(????? '/passive',????? '/norestart',????? '/log C:\Install\Logs\HMR.txt')Start-Process 'C:\Install\XenApp_5_FR2\Support\HMR\HMRTestPack2.msi' $ConfigArgs -wait# =======================================# 3. Install HRP5# =======================================$ConfigArgs = @(????? '/passive',????? '/norestart',????? '/log C:\Install\Logs\HRP5.txt')Start-Process 'C:\Install\XenApp_5_FR2\XenApp Server\X86\PSE450W2K3R05.msp' $ConfigArgs -wait# =======================================# 4. Install FR2 Enabler# =======================================$ConfigArgs = @(????? '/passive',????? '/norestart',????? '/log C:\Install\Logs\FR2Enabler.txt')Start-Process 'C:\Install\XenApp_5_FR2\Licensing\XenApp5_FP2_Enabler.msi' $ConfigArgs -wait# =======================================# 5. Install FlashHDX# =======================================$ConfigArgs = @(????? '/passive',????? '/norestart',????? '/log C:\Install\Logs\FlashHDX.txt')Start-Process 'C:\Install\XenApp_5_FR2\HDX MediaStream for Flash\X86\CitrixHDXMediaStreamForFlash-ServerInstall.msi' $ConfigArgs -wait# =======================================# 6. Install MS Hotfix KB923845# =======================================# ----------------------------------------# This is an update for BITS (2.5) required for SCCM# ----------------------------------------$ConfigArgs = @(????? '/quiet',????? '/noreboot',????? '/log C:\Install\Logs\MSHotfix.txt')Start-Process 'C:\Install\WindowsServer2003-KB923845-x86-ENU.exe' $ConfigArgs -waitRestart-Computer -Force5. HRP7# =======================================## XENAPP 5 2003 FR3 INSTALLATION SCRIPTS## This script has been designed for <INSERT CUSTOMER NAME> # XenApp 5 2003 FR3 installation and is part of a series # of scripts to be run in order to complete an # unattended installation of Citrix XenApp 5 for 2003 ## =======================================# # NUMBER 5: HOTFIX ROLLUP PACK 7## =======================================# =======================================# 1. Install Hotfix Rollup Pack 7# =======================================$ConfigArgs = @(????? '/passive',????? '/norestart',????? '/log C:\Install\Logs\HRP7.txt')Start-Process 'C:\Install\HRP7\PSE450W2K3R07.msp' $ConfigArgs -waitRestart-Computer -Force6. ?Installs post-HRP7 hotfixes# =======================================## XENAPP 5 2003 FR3 INSTALLATION SCRIPTS## This script has been designed for <INSERT CUSTOMER NAME> # XenApp 5 2003 FR3 installation and is part of a series # of scripts to be run in order to complete an # unattended installation of Citrix XenApp 5 for 2003 ## =======================================# # NUMBER 6: POST HRP7 HOTFIXES## =======================================# =======================================# 1. Install Hotfixes# =======================================Get-ChildItem -path C:\Install\Citrix\ -Filter *.msp | Sort-Object –Property Name | ForEach-Object {Start-Process –FilePath $_.PSPath –ArgumentList /passive, /norestart –Wait}Restart-Computer -Force7.? Installs FR3# =======================================## XENAPP 5 2003 FR3 INSTALLATION SCRIPTS## This script has been designed for <INSERT CUSTOMER NAME> # XenApp 5 2003 FR3 installation and is part of a series # of scripts to be run in order to complete an # unattended installation of Citrix XenApp 5 for 2003? ## =======================================# # NUMBER 7: XENAPP 5 2003 FR3## =======================================# This scripts installs the updates to make XenApp 5 FR3.# =======================================# 1. Delivery Services Console# =======================================$ConfigArgs = @(????? '/silent',????? '/l C:\Install\Logs\DSC2.txt')Start-Process 'C:\Install\XA5_2003_FR3\Delivery Services Console\CtxInstall.exe' $ConfigArgs -wait# =======================================# 2. Flash HDX# =======================================$ConfigArgs = @(????? '/passive',????? '/norestart',????? '/log C:\Install\Logs\FlashHDX2.txt')Start-Process 'C:\Install\XA5_2003_FR3\HDXFlash110WX86\CitrixHDXMediaStreamForFlash-ServerInstall-x86.msi' $ConfigArgs -waitRestart-Computer -Force ................
................

In order to avoid copyright disputes, this page is only a partial summary.

Google Online Preview   Download