Overview
This article describes the process to print bulk emails in GFI Archiver. For a quick demonstration on how to print the results of a search in GFI Archiver view the 3x3 video, which is divided into the following sections:
- Perform a search using the GFI Archiver Import Export Tool.
- Export the desired email to .msg format.
- Use VBScript to print the exported files.
Process
-
Perform a search using the GFI Archiver Import Export Tool
- Open the GFI Archiver Import Export Tool found in the GFI Archiver program group.
- Click Download emails from GFI Archiver.
- Connect to the GFI Archiver URL by clicking OK.
- Create the search you require, which will result in the emails you wish to print.
Note: You can add additional conditions by clicking Add Condition to filter down your search even further. - Click Find Now to search for your results.
-
Export the desired email to .msg format
Once the desired results are obtained, perform the following procedure to download your emails in .msg format.- Click the Export Options tab and select Download message in .msg format.
Note: Take note of the download folder path as this would be required to retrieve your emails. - Click Download to download your emails.
- Click the Export Options tab and select Download message in .msg format.
-
Use VBScript to print the exported files
- Proceed to the path where the emails have been stored.
- Copy the exported emails folder on a machine which has a printer installed. (Not required if the GFI Archiver server has a printer attached)
- Copy the .msg files in a folder which will be referenced in the VBScript to print the file in that folder.
- Open Microsoft Notepad and add the following content:
TargetFolder = "C:\EmailExport" Set objShell = CreateObject("Shell.Application") Set objFolder = objShell.Namespace(TargetFolder) Set colItems = objFolder.Items For Each objItem in colItems objItem.InvokeVerbEx("Print") Next
- Ensure that the TargetFolder path included in the VBScript contains the emails you wish to print in msg format.
- Save the new Notepad file as
Print.vbs
. - Execute Print.vbs, and all email messages in the folder will be printed out.