Category Windows

hudson svn windows auth cache fix

Example error when attempting to update the svn credentials on hudson for windows: hudson svn windows “the request doesn’t contain a multipart/form-data or multipart/mixed stream” To fix this download svnkit-1.3.5.7406 to your hard disk.  Login to computer hosting hudson as…

getdn.bat

To return the distinguished name for all users in an active directory domain create a new file called getdn.bat Content: del c:\activeUsers.txt DSQUERY.exe * -limit 0 -filter “(&(objectCategory=Person)(objectClass=User)(!userAccountControl:1.2.840.113556.1.4.803:=2))” >”c:\activeUsers.txt” C:\WINDOWS\NOTEPAD.EXE c:\activeUsers.txt

start menu search broken

Searching from the start menu resulted in no results Searching from the start menu suddenly stopped working on one of my machines recently. Only when it stopped working did I realise how much I had started to rely upon it…

visio error 106

If you are receiving this error: Microsoft Office Visio “An error (106) occurred during the action Check Out File.  Bad disk failure.”  OK.   The issue is that you are trying to save to a folder you don’t have rights…

cURL Examples

Great examples of how to use cURL from  1. Download a Single File The following command will get the content of the URL and display it in the STDOUT (i.e on your terminal). $ curl To store the output…