日韩无码专区无码一级三级片|91人人爱网站中日韩无码电影|厨房大战丰满熟妇|AV高清无码在线免费观看|另类AV日韩少妇熟女|中文日本大黄一级黄色片|色情在线视频免费|亚洲成人特黄a片|黄片wwwav色图欧美|欧亚乱色一区二区三区

RELATEED CONSULTING
相關(guān)咨詢
選擇下列產(chǎn)品馬上在線溝通
服務(wù)時(shí)間:8:30-17:00
你可能遇到了下面的問題
關(guān)閉右側(cè)工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
無人值守安裝IIS 6.0的原理分析
基本命令:Sysocmgr.exe /i:sysoc.inf /u:c:\iis.txt

c:\iis.txt是IIS要安裝的組件列表


復(fù)制代碼 代碼如下:

[Components] 

iis_common = ON 

iis_www = ON 

iis_asp = ON 

iis_inetmgr = ON 

aspnet= ON  

成都創(chuàng)新互聯(lián)提供做網(wǎng)站、網(wǎng)站制作、網(wǎng)頁設(shè)計(jì),成都品牌網(wǎng)站建設(shè)廣告投放平臺等致力于企業(yè)網(wǎng)站建設(shè)與公司網(wǎng)站制作,十載的網(wǎng)站開發(fā)和建站經(jīng)驗(yàn),助力企業(yè)信息化建設(shè),成功案例突破近千家,是您實(shí)現(xiàn)網(wǎng)站建設(shè)的好選擇.

包括IIS組件在內(nèi)的所有組件列表:

Mplay 

Rec 

Vol 

fullscreenconsole 

fax 

wms_admin_mmc 

wms_svrtyplib 

wbem 

dtc 

com 

complusnetwork 

iis_common:CommonFiles - 安裝需要 IIS 程序文件 

iis_inetmgr:Internet 信息服務(wù)管理單元: MMC 中安裝 IIS 管理界面 

netfx 

iis_www:萬維網(wǎng)服務(wù) 

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:安裝 BITS 管理擴(kuò)展中 Microsoft 管理控制臺 (MMC) 

bitsserverextensionsisapi:安裝 IIS ISAPI 以允許上載后臺智能傳輸服務(wù) (BITS) 

sakit_web 

iis_asp 

iis_internetdataconnector 

iis_serversideincludes 

iis_webdav 

tswebclient:遠(yuǎn)程桌面 Web 連接 

iis_ftp:FTP 服務(wù) 

iis_smtp:簡單郵件傳輸協(xié)議 (SMTP) 服務(wù) 

iis_nntp:網(wǎng)絡(luò)新聞傳輸協(xié)議 (NNTP) 服務(wù) 

inetprint:Internet 打印 

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 



scw 

computeserver 

netrqs 

storageserver 

注意:

Windows 總是尋找服務(wù)器最初安裝該媒體。 如果從 CD, 安裝服務(wù)器無人參與安裝提示對于 Windows CD。 如果要運(yùn)行無人參與安裝并使用媒體, 并存儲在網(wǎng)絡(luò)共享, 必須更改為以下注冊表子項(xiàng)中 ServicePackSourcePath 子項(xiàng) SourcePath 子項(xiàng)和值: 

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup

更改用于 ServicePackSourcePath 子項(xiàng) SourcePath 子項(xiàng)和值對合適網(wǎng)絡(luò)共享。 路徑必須包含 i 386 文件夾。 

下面是一個(gè)完整的IIS安裝文件:IISSetup.bat

第一步:更改windows安裝文件位置

第二步:生成安裝選項(xiàng)文件

第三步:開始安裝

復(fù)制代碼 代碼如下:

echo "更改windows安裝文件的路徑"

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 "生成IIS無人值守安裝選項(xiàng)文件"

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安裝完畢

pause


分享題目:無人值守安裝IIS 6.0的原理分析
URL標(biāo)題:http://www.5511xx.com/article/djcdpcd.html