PoshCode Archive  Artifact [0f8046078d]

Artifact 0f8046078de9c172506f014dde38915a6ee69e21cbc13b227c9e8b8435fb2104:

  • File get-attach-from-Lotus.ps1 — part of check-in [0e47deeb55] at 2018-06-10 13:30:21 on branch trunk — Get-Attachments from Lotus Notes Mail database. It will go through all the email for “today” and download it to a folder you specify. (user: Chris Weislak size: 2792)

# encoding: ascii
# api: powershell
# title: get attach. from Lotus
# description: Get-Attachments from Lotus Notes Mail database. It will go through all the email for “today” and download it to a folder you specify.
# version: 0.1
# type: function
# author: Chris Weislak
# license: CC0
# function: Get-Attachments
# x-poshcode-id: 3741
# x-archived: 2014-11-13T06:55:05
# x-published: 2014-11-02T21:27:00
#
# It will Use the current logged on user ID.
#
Param (
	[Parameter(ValueFromPipelineByPropertyName=$True,
		HelpMessage='Lotus Domino Server')]
		$ServerName,
	[Parameter(ValueFromPipelineByPropertyName=$True,
		HelpMessage='Lotus Mail Database')]
		$Database,
	[Parameter(ValueFromPipelineByPropertyName=$True,
		HelpMessage='View to Select')]
		$View,
	[Parameter(ValueFromPipelineByPropertyName=$True,
		HelpMessage='Folder to save Attachments to.')]
		$Folder
)
Function Get-Attachments{
	[CmdletBinding()]
	Param (
		[Parameter(ValueFromPipelineByPropertyName=$True,
			HelpMessage='Lotus Domino Server')]
			$ServerName,
		[Parameter(ValueFromPipelineByPropertyName=$True,
			HelpMessage='Lotus Mail Database')]
			$Database,
		[Parameter(ValueFromPipelineByPropertyName=$True,
			HelpMessage='View to Select')]
			$View,
		[Parameter(ValueFromPipelineByPropertyName=$True,
			HelpMessage='Folder to save Attachments to.')]
			$Folder
	)
	Begin {
		$NotesSession = New-Object -ComObject Lotus.NotesSession
		$NotesSession.Initialize()
	}
	Process {
		$NotesDatabase = $NotesSession.GetDatabase( $ServerName, $Database, 1 )
		$AllViews = $NotesDatabase.Views | Select-Object -ExpandProperty Name
		$dbview = $AllViews | Select-String -Pattern $View
		Foreach ($nview in $dbview) {
			$view = $NotesDatabase.GetView($nview)
			$viewnav = $view.CreateViewNav()
			$docs = $viewnav.GetFirstDocument()
			while ($docs -ne $null){
				$document = $docs.Document
				$docdate = ($document.Created).ToShortDateString()
				$date = (Get-Date).ToShortDateString()
				if ($docdate -eq $date){
					if ($document.HasEmbedded){
						foreach ($itm in $document.Items){
							if ($itm.type -eq 1084){
								$attach = $document.GetItemValue($itm.Name)
								#$attach = $document.GetItemValue('$File')
								$attachment = $document.GetAttachment($attach)
								$atname = $attachment.Source
								if (Get-Item $Folder\$atname){
									$extra = (Get-Date -UFormat "%H.%M.%S").toString()
										$attachment.ExtractFile("$Folder\$extra_$atname")
								}
								$attachment.ExtractFile("$Folder\$atname")
							}
						}
					}
				}
				$docs = $viewnav.GetNextDocument($docs)
			}
		}
	}
	End {}
}
Get-Attachments -ServerName $ServerName -Database $Database -View $View -Folder $Folder