Wednesday, March 05, 2008



Backup PSTs on Users PCs
Very useful, as some of my customers are "happy with POP". Hook it in with a GPO like so:




' Backup Users PST to network Share
On Error Resume Next

Set WshShell = CreateObject("Wscript.Shell")

Set objFSO = CreateObject("Scripting.FileSystemObject")
strUserName = WshShell.ExpandEnvironmentStrings("%username%")

'PST taken from default location and copied to a share on server
objFSO.CopyFile "C:\Documents and Settings\" & strUserName & "\Local Settings\Application Data\Microsoft\Outlook\*.pst" , "\\SRV1\Users\" & strUserName & "\"

Set objFSO = Nothing


More...

Tuesday, March 04, 2008

Outlook Nickname Cache

The nickname cache, an .N2K file type is stored as a hidden file in:
C:\Documents and Settings\\Application Data\Microsoft\Outlook\
More...

NK2.info is a small utility to view and export the contents of an Outlook auto completion file More...
More...

MS KB article 287623, how to reset the nickname and the automatic completion caches in Outlook.
More...

Labels:

Monday, March 03, 2008

Sysinternals Suite
All the Sysinternals Tools (Process Explorer, Filemon, Regmon, PSTOOLS etc.) in one zip file. More...