From 99995ad8ae8d508e02b0f1b7b04800bff47a1363 Mon Sep 17 00:00:00 2001 From: Aaron Viehl Date: Sat, 5 Feb 2022 11:54:44 +0100 Subject: [PATCH] Typos, typos, typos English is hard :cry: --- msoffice-removal-tool.ps1 | 6 +++--- readme.md | 42 +++++++++++++++++++++++++-------------- 2 files changed, 30 insertions(+), 18 deletions(-) diff --git a/msoffice-removal-tool.ps1 b/msoffice-removal-tool.ps1 index 5db44bc..fe3953f 100644 --- a/msoffice-removal-tool.ps1 +++ b/msoffice-removal-tool.ps1 @@ -12,7 +12,7 @@ .PARAMETER SuppressReboot Will supress the reboot after finishing the script. .PARAMETER UseSetupRemoval - Will use the setup methode to remove current Office installations instead of SaRA. + Will use the setup method to remove current Office installations instead of SaRA. .PARAMETER Force Skip user-input. .INPUTS @@ -48,11 +48,11 @@ Function Invoke-OfficeUninstall { New-Item "$SaRA_DIR" -ItemType Directory } if ($UseSetupRemoval) { - Write-Host "Invoking default setup methode ..." + Write-Host "Invoking default setup method ..." Invoke-SetupOffice365 "$Office365Setup_URL/purge.xml" } else { - Write-Host "Invoking SaRA methode ..." + Write-Host "Invoking SaRA method ..." Remove-SaRA Write-Host "Downloading most recent SaRA build ..." Invoke-SaRADownload diff --git a/readme.md b/readme.md index 415f220..16d9d61 100644 --- a/readme.md +++ b/readme.md @@ -1,23 +1,35 @@ # Microsoft Office Removal Tool +```plain + ___ ___ ___ _____ _____ _____ +|_ | | |_ | | __| __| | + _| |_| | |_| |_ | __| __| | | | +|_____|___|_____| |__| |__| |_|_|_| + +Microsoft Office Removal Tool +by Aaron Viehl (101 Frankfurt) +einsnulleins.de +``` + ## Synopsis -This script downloads the current Office uninstaller from Microsoft and tries to remove all Office installations on this computer. If you wish it tries to install the newest Office365 build as well. + +This script downloads the current Office uninstaller from Microsoft and tries to remove all Office installations on this computer. + +If you wish it tries to install the newest Office365 build as well. + +You can choose between 2 methods of uninstalling:\ +Default method will use the [Microsoft Support and Recovery Assistant (SaRA)](https://docs.microsoft.com/en-us/office365/troubleshoot/administration/sara-command-line-version) for uninstalling.\ +By using `-UseSetupRemoval` the Office365 setup method will be used. ## Parameter -| Parameter | Usage | -|---|---| -| -InstallOffice365 | The script will try to install the newest Office365 build after removal | -| -SuppressReboot | No reboot will be executed after script is done| -| -UseSetupRemoval | Will use the official Office365 setup instead of SaRA| -|-Force | Non-interactive - No user interaction required| - -### Notes - Version: 1.0 - - Author: aaron.viehl@frankfurt.einsnulleins.de - - Creation Date: 2022-02-04 +| Parameter | Usage | +|-------------------|-------------------------------------------------------------------------| +| -InstallOffice365 | The script will try to install the newest Office365 build after removal | +| -SuppressReboot | No reboot will be executed after script is done | +| -UseSetupRemoval | Will use the official Office365 setup instead of SaRA | +| -Force | Non-interactive - No user interaction required | ### Example - ``.\msoffice-removal-tool.ps1 -InstallOffice365 -SuppressReboot -Force`` \ No newline at end of file + + ``.\msoffice-removal-tool.ps1 -InstallOffice365 -SuppressReboot -Force``