使用管理員身份運(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