I wrote a post a year ago or more about how to install the SCCM 2007 Admin Console including R2, this is something I use a lot in my projects as it is more and more to install when installing the Admin Console.
In the example below I install the Admin Console, the required hotfix(kb977384) and R3. If you are using Forefront Endpoint Protection you need to install the FEP Admin UI extensions as well on your client machines which should have the SCCM console locally installed, I will post an example of a script with the FEP integration later on.
When R3 came along the SCCM 2007 R3 requires a hotfix(KB977384) which restarts a lot of services on the computer during installation for instance ccmexec, WMI and so on, if a Task Sequence or application installation runs it will stop and return error.
so I wrote a little vbscript which uses a .MIF file to report the installation status back to the SCCM server. It will report any errors back to the SCCM server so that it is easy to troubleshoot.
The script can be downloaded here: Install
To implement the script do the following:
- Copy the needed installation media to a folder with the following sub-folders.
Note: to save space I deleted files in the WAIK directory from the Configuration Manager SP2 installation source as these files are not needed to install the admin console. - Save the downloaded vbscript to the folder you just created and rename it to install.vbs.
- Create a Unattend.ini file in the ConfigMgr_sp2 folder with the following content, you need to change the server name to your SCCM Primary Site server.
[Identification]
Action=InstallAdminUI
[Options]
SMSInstallDir=c:\program files\Configuration Manager 2007
ParentSiteServer=SCCM1
SDKServer=SCCM1
- In SCCM Create a Package with the source folder beeing the folder structure just created.
- In the package properties configure the following under the reporting tab: (this is used to match the .mif file generated by the script with the package)
- Create a program with the following settings:
- If you want to display the installation progress in a cmd windows to the users, configure the program to “Allow users to interact with this program”
- Add the package to your Distribution Points
- Advertise the program to a test collection and start testing.
I hope this can be useful for more than me.
Hello Jörgen,
Noticed that you reference the Unattended.ini in your blog but your script calls for Unattend.ini. Small detail.
Thanks for the great site, always good info.
Thanks for pointing that out! I have corrected it now.
Regards,
Jörgen
Thanks for this guide I found it really useful. Just one problem that I found from using this is the problem with transferring files in a “bin” folder using IIS on Server 2008. It probably won’t affect seasoned SCCM veterans but it did confuse a newbie like myself!
Details of the problem and solution are outlined here: http://social.technet.microsoft.com/Forums/en-US/configmgrswdist/thread/b9cdabba-fa7d-455b-bd4f-366ace16a624/
Did you ever update with the FEP stuff? I ask because there are 64 bits for FEP that are specific too.
Hi,
Yes I did! It is posted here: https://ccmexec.com/2012/05/unattended-installation-of-sccm-2007-admin-console-including-r3-fep/
/Jörgen