When compression is turned on globally for the root website, is there a way to turn compression off for a specific page? (ex. download.aspx) I would like to turn it off on a few select pages where we are streaming files to the client. I'm using IIS 6.
Asked
Active
Viewed 187 times
1 Answers
1
Yes, that's possible. You can do it using adsutil.vbs. The syntax will be something like this:
cscript C:\Inetpub\AdminScripts\adsutil.vbs set W3SVC/{siteID}/Root/{subfolder}{page.asp}/DoDynamicCompression False

Scott Forsyth
- 16,449
- 3
- 37
- 56
-
great, thanks Scott. (Sorry, I don't have enough rep on serverfault to give vote you up.) – ozzijb Feb 10 '11 at 16:28
-
Great, glad that worked for you! – Scott Forsyth Feb 10 '11 at 17:02