2021-11-12 12:02:07 +01:00
|
|
|
|
<#
|
|
|
|
|
.SYNOPSIS
|
2021-11-29 16:14:49 +01:00
|
|
|
|
Launches the Microsoft Outlook app
|
2021-11-12 12:02:07 +01:00
|
|
|
|
.DESCRIPTION
|
|
|
|
|
This script launches the Microsoft Outlook email application.
|
|
|
|
|
.EXAMPLE
|
2021-11-29 16:14:49 +01:00
|
|
|
|
PS> ./open-outlook
|
2021-11-12 12:02:07 +01:00
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz · License: CC0
|
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
#>
|
|
|
|
|
|
2021-12-13 08:55:50 +01:00
|
|
|
|
function TryToExec { param($Folder, $Binary)
|
|
|
|
|
if (test-path "$Folder/$Binary" -pathType leaf) {
|
|
|
|
|
start-process "$Folder/$Binary" -WorkingDirectory "$Folder"
|
|
|
|
|
exit 0 # success
|
|
|
|
|
}
|
2021-11-12 12:02:07 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try {
|
2021-12-13 08:55:50 +01:00
|
|
|
|
TryToExec "C:\Program Files\Microsoft Office\root\Office16" "OUTLOOK.EXE"
|
|
|
|
|
TryToExec "C:\Programs\Microsoft Office\Office14" "OUTLOOK.EXE"
|
|
|
|
|
throw "It seems Outlook isn't installed yet."
|
2021-11-12 12:02:07 +01:00
|
|
|
|
} catch {
|
2021-12-13 08:55:50 +01:00
|
|
|
|
& "$PSScriptRoot/give-reply.ps1" "Sorry: $($Error[0])"
|
2021-11-12 12:02:07 +01:00
|
|
|
|
exit 1
|
|
|
|
|
}
|