使用管理員身份運(yùn)行 cmd 命令行窗口1、應(yīng)用程序池:# 導(dǎo)出所有應(yīng)用程序池%windir%\system32\inetsrv\appcmd list apppool /config /xml > c:\apppools.xml# 導(dǎo)入所有應(yīng)用程序池%windir%\system32\inetsrv\appcmd add apppool /in < c:\apppools.xml2、站點(diǎn)# 導(dǎo)出所…
使用管理員身份運(yùn)行 cmd
命令行窗口
1、應(yīng)用程序池:
# 導(dǎo)出所有應(yīng)用程序池 %windir%\system32\inetsrv\appcmd list apppool /config /xml > c:\apppools.xml # 導(dǎo)入所有應(yīng)用程序池 %windir%\system32\inetsrv\appcmd add apppool /in < c:\apppools.xml
2、站點(diǎn)
# 導(dǎo)出所有站點(diǎn) %windir%\system32\inetsrv\appcmd list site /config /xml > c:\sites.xml # 導(dǎo)入所有站點(diǎn) %windir%\system32\inetsrv\appcmd add site /in < c:\sites.xml
3、針對(duì)單獨(dú)的站點(diǎn)導(dǎo)入和導(dǎo)出
# 導(dǎo)出單獨(dú)的應(yīng)用程序池 %windir%\system32\inetsrv\appcmd list apppool "應(yīng)用程序池名稱" /config /xml > c:\myapppool.xml # 導(dǎo)入單獨(dú)的應(yīng)用程序池 %windir%\system32\inetsrv\appcmd add apppool /in < c:\myapppool.xml # 導(dǎo)出單獨(dú)站點(diǎn) %windir%\system32\inetsrv\appcmd list site "站點(diǎn)名稱" /config /xml > c:\mywebsite.xml # 導(dǎo)入單獨(dú)站點(diǎn) %windir%\system32\inetsrv\appcmd add site /in < c:\mywebsite.xml
上一篇:SQLServer 數(shù)據(jù)庫(kù)表設(shè)計(jì)器修改默認(rèn)顯示列,增加顯示字段說(shuō)明備注等 (Microsoft SQL Server Management Studio 18 )
下一篇:沒(méi)有了