How to Disable CRL Checking in IIS 6.x:
- Open a CMD prompt
- Navigate to c:\inetpub\adminscripts
- To disable for ALL sites, run the following command:
- cscript adsutil.vbs set w3svc/CertCheckMode 1
- Hit the ENTER key
- To disable for SPECIFIC sites, run the following command:
- cscript adsutil.vbs set w3svc/siteid#/CertCheckMode 1
- Hit the ENTER key
To query to see if the CertCheckMode is already set or not, you can run one of the following commands:
- cscript adsutil.vbs get w3svc/CertCheckMode
- cscript adsutil.vbs get w3svc/siteid#/CertCheckMode
Recent Comments