Ok, I have been running into this one problem on a bunch of Dell Latitude laptops running Windows 7 Pro where we go to run Windows Update we get an error message saying Windows won’t update with a error 8024402C. I try all the normal tricks of just re-running Window update and clearing the cache…
Category: Uncategorized

Whitelist a Domain in Exchange 2010
First, open Exchange Management Console on the Exchange 2010 machine. Type: Get-ContentFilterConfig to see the current whitelisted domains. Copy the code below into notepad and save it as a .ps1 file. In this example I used the name whitelist.ps1 [message_box color=”blue”]$domain = read-host “Domain to whitelist “ $list = (Get-ContentFilterConfig).BypassedSenderDomains $list.add(“$domain”) Set-ContentFilterConfig -BypassedSenderDomains $list [/message_box]…
How To Come Up With A Strong And Memorable Password
My dad frequently asks me when the day will come that we will no longer need passwords. He happily tells me that he would rather not have passwords at all because they are too hard to remember. Here is a good tip I learned for coming up with a long password that is difficult to…
Take a screenshot
There are times when you need a screen shot to copy the error information on your computer to explain the problems. You can copy an image of your screen by pressing PRINT SCREEN button on your keyboard and paste it into a document, e‑mail message, or other programs to save the image of your screen.…
How to Delete an Address from Outlook Auto-Complete List
Outlook remembers every address you have typed in a To:, Cc: or Bcc: field. This is really good feature because when you start keying in a name or address, Outlook automatically suggest the contact in its entirety. Many of my clients rely on this and I have to admit, so do I. Unfortunately, Outlook remembers all the mistyped and old…