Friday, November 16, 2012

Simple proxy server for NTLM

I was never successful in getting maven run at office due to the proxy setup, which supports NTLM authentication.  While looking a proxy server that supports NTLM auth, I was also looking if they support modifying request/response headers etc. or act as a caching proxy.  Here is the list so far:
  • cntlm - developed in C, still active (Last Update:

  • Last Update:





Misc CMD commands

net start : lists all running services
net config workstation : to get the logged on user info
net stop "service name" : to stop a particular service
net use drive_letter: \\computername\sharename : to map a share with a drive name
net use drive_letter: /delete : to unmap the mapped share
sc query type= service state= active : to get all active services
sc query type= service state= inactive : to get all stopped/inactive services
sc query type= service state= all : to get all services

Sources
Services Query
CMD optons