IIS Role Services for Package and Task Service (Site Server)
Created: 07 Feb 2013 | Updated: 12 Feb 2013 | 4 comments
This issue has been solved. See solution.
Hi,
is there any official Document what Role Services of the IIS are required to run Package and Task Service (Site Server) on Server2008 R2
I could find only find the following inscrution:
http://www.symantec.com/business/support/index?pag...
I have to setup ~25 Site Servers and would like to automate the setup with a script.
Thanks
Discussion Filed Under:
Comments 4 Comments • Jump to latest comment
“Best Practice: Managing Task Server Communications in 7.0 and 7.1”:
http://www.symantec.com/docs/HOWTO48411
“Installing Task Server in IIS 7.0 or 7.5”
http://www.symantec.com/docs/HOWTO47804
“Installing Package Server in IIS 7.0”
http://www.symantec.com/docs/HOWTO47803
Config changes made to IIS on package server:
http://www.symantec.com/docs/TECH194716
On Windows 2008 R2 add the following Roles and add the Role Services to the defaults (accept all prompts for further required role services):
You should be able to script this as part of the OS install.
Authorised Symantec Consultant (ASC) with Endpoint Management Limited, an Authorised Symantec Delivery Provider based in the UK.
Connect Etiquette: "Mark as Solution" posts that fix your problem, thumbs up for useful
Give this powershell command a try for automation.
Import-Module Servermanager
Add-WindowsFeature NET-Framework, NET-Framework-Core, NET-Win-CFAC, Web-Server, Web-Http-Redirect, Web-Asp-Net, Web-ASP, Web-ISAPI-Ext, Web-ISAPI-Filter, Web-Log-Libraries, Web-Basic-Auth, Web-Windows-Auth, Web-Digest-Auth, Web-Mgmt-Compat, Web-Http-Tracing, Web-Client-Auth, Web-Cert-Auth, Web-Url-Auth, Web-IP-Security, Web-Dyn-Compression, Web-Scripting-Tools, Web-Mgmt-Service, AS-Web-Support,SNMP-Services
I use this every SMP/Task Server I create.
After complete you can even throw some IIS tweaks at it.
%systemroot%\system32\inetsrv\appcmd set apppool /apppool.name: DefaultAppPool /managedPipelineMode:Classic
%systemroot%\system32\inetsrv\appcmd set app "Default Web Site/" /applicationPool:"Classic .NET AppPool"
%systemroot%\system32\inetsrv\appcmd set app "Default Web Site/Altiris/ClientTaskServer" /applicationPool:"Classic .NET AppPool"
iisreset
Clay
Thanks for sharing that, really useful.
Now all you need to do is script the 7.1 Sp2 MP1.1 Hotfix rollup task Server update in there :-)
Authorised Symantec Consultant (ASC) with Endpoint Management Limited, an Authorised Symantec Delivery Provider based in the UK.
Connect Etiquette: "Mark as Solution" posts that fix your problem, thumbs up for useful
Thanks that really really helps :)
Would you like to reply?
Login or Register to post your comment.