From 9d240326c882d45f4e1a7daf7e67816ae135bb02 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Fri, 12 Nov 2021 12:02:07 +0100 Subject: [PATCH] Add open-microsoft-outlook.ps1 and close-microsoft-outlook.ps1 --- Scripts/close-microsoft-outlook.ps1 | 15 +++++++++++++++ Scripts/open-microsoft-outlook.ps1 | 28 ++++++++++++++++++++++++++++ 2 files changed, 43 insertions(+) create mode 100644 Scripts/close-microsoft-outlook.ps1 create mode 100644 Scripts/open-microsoft-outlook.ps1 diff --git a/Scripts/close-microsoft-outlook.ps1 b/Scripts/close-microsoft-outlook.ps1 new file mode 100644 index 00000000..7700a6a7 --- /dev/null +++ b/Scripts/close-microsoft-outlook.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Closes Microsoft Outlook +.DESCRIPTION + This script closes the Microsoft Outlook email application gracefully. +.EXAMPLE + PS> ./close-microsoft-outlook +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +taskkill /im outlook.exe +exit 0 # success diff --git a/Scripts/open-microsoft-outlook.ps1 b/Scripts/open-microsoft-outlook.ps1 new file mode 100644 index 00000000..2356a05b --- /dev/null +++ b/Scripts/open-microsoft-outlook.ps1 @@ -0,0 +1,28 @@ +<# +.SYNOPSIS + Launches Microsoft Outlook +.DESCRIPTION + This script launches the Microsoft Outlook email application. +.EXAMPLE + PS> ./open-microsoft-outlook +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +function TryLaunching { param($Path) + if (test-path "$Path" -pathType leaf) { + start-process "$Path" + exit 0 # success + } +} + +try { + TryLaunching "C:\Program Files\Microsoft Office\root\Office16\OUTLOOK.EXE" + TryLaunching "C:\Programs\Microsoft Office\Office14\OUTLOOK.EXE" + exit 0 # success +} catch { + "⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))" + exit 1 +}