Posts

Showing posts with the label silent install

Citrix Receiver upgrade and double icon issue

I recently had to upgrade Citrix Receiver for one of my clients and I faced numerous issues during the install. I had to enable SSO for Citrix Receiver and add a storefront URL so when the users launch Citrix Receiver they should be able to launch their apps store directly without going through login prompts and entering the url. While Citrix Receiver can be installed with the following command: CitrixReceiver.exe /silent /noreboot /includeSSON ENABLE_SSON=Yes ALLOWADDSTORE=N ALLOWSAVEPWD=S And Store URL can be set in the ADM template of Citrix Receiver, however, you will need to uninstall the older version before you install the new one. Other issues faced were for double icons which appeared on those users machines who had added an app store themselves in the previous version. When a new store was added through Group policy, it actually doubled the store and the icons. The stores are created in the below registry key: HKCU\Software\Citrix\Dazzle When I removed this for the user and i...

Re-Packaging Apple iTunes 10.6.1.7 and later

iTunes comes as an EXE file which can be extracted easily with 7Zip. The five MSI I received were AppleApplicationSupport, AppleMobileDeviceSupport64, AppleSoftwareUpdate, Bonjour64 and iTunes64. The Apple Software Update MSI and Bonjour MSI can be discarded if you do not want to AutoUpdate your iTunes. Bonjour can be kept if you want to allow file sharing on your desktop fleet. We did not want this so we removed this MSI. If you want to install Bonjour then it can be installed silently with /qb! switch. From this Version QuickTime is not part of iTunes. QuickTime can be packaged separately. more details for packaging this is in this post: http://msiworld.blogspot.com.au/2012/06/re-packaging-apple-quicktime-7728056.html Apple Application Support and Apple Mobile Device Support MSI can be installed silently with /qb! switch. You will have to customize iTunes by creating an MST file. 1) Change the following Public Properties in the MST: DESKTOP_SHORTCUTS = 0 DISABLEADVTSHORTCUTS = 0 SCHE...

Installation and Uninstallation of MSU in silent mode

MSU are the Microsoft Update files. You can easily install the MSU file silently without reboot with the following command line: wusa.exe Windows6.1-KB123456-x86.msu /quiet /norestart To Uninstall it Silently you need to follow this simple procedure: 1) Run this command: expand c:\temp\Windows6.0-KB123456-x86.msu –F:Windows6.0-KB123456-x86.xml c:\temp 2) This will create an XML file in temp folder as per the name above. Edit this xml in notepad. 3)Find the assemblyidentity tag. Then, note the values of the following attributes: The name attribute The publickeytoken attribute The processArchitecture attribute The version attribute 4) Use the below command to uninstall the MSU from your machine. start /w pkgmgr /up: name ~ publickeytoken ~ processArchitecture ~~ version Note: The variables above need to be replaced by the vaules you have copied in step 3.

Packaging Mozilla Firefox

Most people dread while packaging Mozilla Firefox application and mostly try to make a silent installation of it. I was recently given task to package the latest Mozilla Firefox application. The same procedure can be used for version 10.0.1, 11, 12 and 13, 14 and 15 as well as I have tried and it works fine for all of these. I would like to share here how I could easily package it. Also by this method you will be able to do Proxy server settings. First step is to do a Setup capture of the source exe which can be downloaded from Mozilla’s website. Take care that you do not have to launch the application after the installation is completed. Second Step is to copy 3 files as stated below. You can add these files in your .wsi directly after the setup capture. These 3 files will solve all your issues. 1. Mozilla.cfg : This file needs to be added to "%programfiles%\Mozilla Firefox\" folder and should have this content: //Firefox Default Settings // set Firefox Default homepage pref...