Script Center > Gallery > Storage > Email Log Files
TechNet Script Center logo

Welcome to the TechNet Script Center Gallery!

Each contribution is licensed to you under a License Agreement by its owner, not Microsoft. Microsoft does not guarantee the contribution or purport to grant rights to it.

Email Log Files

(Community)
Rate it:
 
 
 
 
 
Script Code
VBScript
Dim retDate
Dim contents
Dim myip

' Change here the proper location for the logfiles of Filezilla Server
Dim strLogPlace : strLogPlace = "C:\Program Files\FileZilla Server\Logs\"

' Change your required emailadresses here
Dim EmailFrom : EmailFrom = "ftpwatch@fake.com"
Dim EmailTo : EmailTo = "fake@fake.com"
'Dim EmailBCC: EmailBCC = ""

Set FSO = CreateObject("Scripting.FilesystemObject")

strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
    & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")

Set IPConfigSet = objWMIService.ExecQuery _
    ("Select * from Win32_NetworkAdapterConfiguration Where IPEnabled=TRUE")

For Each IPConfig in IPConfigSet
    If Not IsNull(IPConfig.IPAddress) Then 
        For i=LBound(IPConfig.IPAddress) to UBound(IPConfig.IPAddress)
'            WScript.Echo IPConfig.IPAddress(i)
        Next
		MyIp = IPConfig.IPAddress(0)
    End If
Next

ShowSubfolders FSO.Getfolder(strLogPlace)

'recursive procedure to loop through all folders and subfolders
Sub ShowSubFolders (Folder) 
  For Each objfile in Folder.Files            
	retDate = datediff("d",objfile.datelastmodified,now)
	Select Case Retdate
	Case 1				' A day before today
		Set objEmail = CreateObject("CDO.Message")																																				
		objEmail.From = EmailFrom
		objEmail.To = EmailTo
		objEmail.BCC = EmailBcc
		objEmail.Subject = "Automatic message: Filezillaserver logfile from " & date()-1

		Set filesys = CreateObject("Scripting.FileSystemObject") 
		Set filetxt = filesys.OpenTextFile(strLogPlace & objfile.name, 1, True) 
		contents = filetxt.ReadAll
		objEmail.Textbody = contents
		filetxt.Close   

		objEmail.AddAttachment strLogPlace & objfile.name
		objEmail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
		objEmail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserver") = MyIp
		objEmail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
		objEmail.Configuration.Fields.Update
		objEmail.Send
	End select
  Next
  For Each Subfolder in Folder.SubFolders
    ShowSubfolders Subfolder
  Next
End Sub 

Platforms
Windows Server 2008 R2 No
Windows Server 2008 No
Windows Server 2003 No
Windows 7 No
Windows Vista No
Windows XP No
Windows 2000 No
For online peer support, join The Official Scripting Guys Forum! To provide feedback or report bugs in sample scripts, please start a new discussion on the Discussions tab for this script.
Disclaimer The sample scripts are not supported under any Microsoft standard support program or service. The sample scripts are provided AS IS without warranty of any kind. Microsoft further disclaims all implied warranties including, without limitation, any implied warranties of merchantability or of fitness for a particular purpose. The entire risk arising out of the use or performance of the sample scripts and documentation remains with you. In no event shall Microsoft, its authors, or anyone else involved in the creation, production, or delivery of the scripts be liable for any damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or other pecuniary loss) arising out of the use of or inability to use the sample scripts or documentation, even if Microsoft has been advised of the possibility of such damages.
Be the first to create a discussion.