如何非交互地安装 IIS 的动态内容压缩组件(6 和 7)?

如何非交互地安装 IIS 的动态内容压缩组件(6 和 7)?

以下任何一项对于我来说都是非交互式的:

  • 命令行静默安装
  • 脚本文件
  • 代码(.NET、C、VB 等)

谢谢。

编辑

我想强调的是,我希望安装负责动态内容压缩的模块。这与在已安装相应模块后配置动态内容压缩不同。

答案1

伊斯7.x

http://weblogs.asp.net/owscott/archive/2009/02/22/iis-7-compression-good-bad-how-much.aspx

C:\Windows\System32\Inetsrv\Appcmd.exe set config -section:urlCompression -doStaticCompression:true -doDynamicCompression:true
C:\Windows\System32\Inetsrv\Appcmd.exe set config -section:httpCompression -[name='gzip'].staticCompressionLevel:9 -[name='gzip'].dynamicCompressionLevel:4

微软 IIS 6 新功能

http://weblogs.asp.net/owscott/archive/2004/01/12/IIS-Compression-in-IIS6.0.aspx

cscript C:\Inetpub\AdminScripts\adsutil.vbs set w3svc/site#/root/DoStaticCompression False
cscript C:\Inetpub\AdminScripts\adsutil.vbs set w3svc/site#/root/DoDynamicCompression False

相关内容