Hi Team, There is a small error check in this script at line 66 as you can see below the following line of code looks like this Wscript.Echo "ASP Enable Chunked Encoding: " & o_ bjItem.AspEnableChunkedEncodin g This leads to compilation error. This needs to be set to this: Wscript.Echo "ASP Enable Chunked Encoding: " & _ objItem.AspEnab leChunkedEncodi ng On replacing the lines, the VB script executes successfully.