Basic command: Sysocmgr.exe/I: sysoc. inf/u: c: \ iis.txt
C: \ iis.txt is the list of components to be installed by IIS.
Copy codeThe Code is as follows: [Components]
Iis_common = ON
Iis_www = ON
Iis_asp = ON
Iis_inetmgr = ON
Aspnet = ON
List of all components including IIS components:
Mplay
Rec
Vol
Fullscreenconsole
Fax
Wms_admin_mmc
Wms_svrtyplib
Wbem
Dtc
Com
Complusnetwork
Iis_common: CommonFiles-IIS program files are required for Installation
Iis_inetmgr: Internet Information Service Management Unit: Install IIS Management Interface in MMC
Netfx
Iis_www: World Wide Web Service
Wms_admin_asp
Wms_server
Wms_isapi
Rootautoupdate
Autoupdate
Licenseserver
Certsrv_client
Certsrv_server
Authman
Cluster
Ieaccess
Iehardenadmin
Iehardenuser
Msmq_core
Msmq_localstorage
Msmq_adintegrated
Msmq_mqdsservice
Msmq_triggersservice
Msmq_httpsupport
Msmq_routingsupport
Bitsserverextensionsmanager: Installs the Microsoft Management Console (MMC) in the BITS management extension)
Bitsserverextensionsisapi: Install iis isapi to allow uploading of Background Intelligent Transmission Service (BITS)
Sakit_web
Iis_asp
Iis_internetdataconne
Iis_serversideincludes
Iis_webdav
Tswebclient: Remote Desktop Web connection
Iis_ftp: FTP service
Iis_smtp: Simple Mail Transfer Protocol (SMTP) Service
Iis_nntp: Network News Transmission Protocol (NNTP) Service
Inetprint: Internet Printing
Fp_extensions: FrontPage2002ServerExtensions
Appsrv_console
Dtcnetwork
Aspnet Asp. Net
Oeaccess
Mswordpad
Calc
Charmap
Clipbook
Deskpaper
Mousepoint
Paint
Templates
Imegen
Chat
Hypertrm
Accessopt
Rstorage
Indexsrv_system
Uddiweb
Uddidatabase
Uddiadmin
Terminalserver
Wbemmsi
Snmp
Wbemsnmp
Netmontools
Netcmak
Netcps
Wins
Dns
Dhcpserver
Simptcp
Ias
Netcis
Macprint
Macsrv
Lpdsvc
Reminst
Pop3service
Pop3admin
Display
Ntcomponents
WMPOCM
K
Scw
Computeserver
Netrqs
Storageserver
Note:
Windows always looks for the server to initially install the media. If the Installation server is not involved in the installation from CD, a prompt is displayed for Windows CD. To run an unattended installation and use media and store it in network sharing, you must change it to the ServicePackSourcePath subitem and value in the following registry subitem:
HKEY_LOCAL_MACHINE \ SOFTWARE \ Microsoft \ Windows \ CurrentVersion \ Setup
Change the SourcePath subitem used for ServicePackSourcePath and the value pair to share with the appropriate network. The path must contain the I 386 folder.
The following is a complete IIS Installation File: IISSetup. bat
Step 1: change the location of the windows Installation File
Step 2: generate the installation option File
Step 3: Start Installation
Copy codeThe Code is as follows: echo "changing the path of the windows Installation File"
Echo Windows Registry Editor Version 5.00> c: \ setupreg. reg
Echo [HKEY_LOCAL_MACHINE \ SOFTWARE \ Microsoft \ Windows \ CurrentVersion \ Setup]> c: \ setupreg. reg
Echo "ServicePackSourcePath" = "D :\\ Win2003 \"> c: \ Win2003setupPath. reg
Echo "SourcePath" = "D :\\ Win2003 \"> c: \ Win2003setupPath. reg
Regedit/S c: \ Win2003setupPath. reg
Del c: \ Win2003setupPath. reg
Echo "generate the IIS Unattended Installation option file"
Echo [Components]> c: \ iis.txt
Echo iis_common = ON> c: \ iis.txt
Echo iis_www = ON> c: \ iis.txt
Echo iis_asp = ON> c: \ iis.txt
Echo iis_inetmgr = ON> c: \ iis.txt
Echo aspnet = ON> c: \ iis.txt
Sysocmgr.exe/I: sysoc. inf/u: c: \ iis.txt
Del c: \ iis.txt
Echo IIS installation is complete
Pause