February 2014
M T W T F S S
 12
3456789
10111213141516
17181920212223
2425262728  

Categories

February 2014
M T W T F S S
 12
3456789
10111213141516
17181920212223
2425262728  

Proxy configuration from CMD line

Windows 2003

Open a CMD prompt Type: proxycfg -p proxy.fqdn.com:8080, *.microsoft.com Everything after the comma is for anything you want in the bypass proxy list. Hit ENTER Windows 2008 Open a CMD prompt, type: NetSH WinHTTP Set Proxy proxy-server=”PROXY.COM:8080″ bypass-list=”SERVER.COM” Show Proxy

Kill a Terminal Server Session from the Command Line

How to Kill a Terminal Services Session from the Command Line

Open a CMD prompt To query for current sessions, type: qwinsta.exe /server:<servername> To kill a session, type: rwinsta.exe /server:<servername> <session id>

Disable CRL Checking

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 […]

HTTPS 413

IIS 7.5 – uploadReadAheadSize A developer recently reported a problem that when a customer attempted to upload an attachment, they would sometime receive the error:The page was not displayed because the request entity is too large.In our case it did not include an error number, but it will sometimes include the error number:

HTTPS 413

[…]