Question : SBS 2008 looking for evidence of a user being logged on

Hi,

I have a client with a SBS 2008 box.They would like to know when a particular user logged on and off of their client workstation on the SBS domain on a particular date in the past.

I understand that this information is not logged on the server by default.

Can anyone suggest any logs that might conatin useful evidence of activity by this user on this date, and how to filter for the helpful records.

Thanks,

Richard

Answer : SBS 2008 looking for evidence of a user being logged on

See VBA code.

If you're using from within Access, you'll need to make a reference to the Word library.

Change the first file path to your Word doc.  Second to your TXT name.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
Dim w As New Word.Application
Dim doc As Word.Document

filePath = "c:\..\test.doc"
filePathTxt = "c:\..\test.txt"


Set doc = w.Documents.Open(filePath)

doc.SaveAs FileName:=filePathTxt, FileFormat:=wdFormatText, _
    LockComments:=False, Password:="", AddToRecentFiles:=True, WritePassword _
    :="", ReadOnlyRecommended:=False, EmbedTrueTypeFonts:=False, _
    SaveNativePictureFormat:=False, SaveFormsData:=False, SaveAsAOCELetter:= _
    False, Encoding:=1252, InsertLineBreaks:=False, AllowSubstitutions:=False _
    , LineEnding:=wdCRLF
        
Random Solutions  
 
programming4us programming4us