Typos, typos, typos
English is hard 😢
This commit is contained in:
parent
69cb01b0a1
commit
99995ad8ae
@ -12,7 +12,7 @@
|
|||||||
.PARAMETER SuppressReboot
|
.PARAMETER SuppressReboot
|
||||||
Will supress the reboot after finishing the script.
|
Will supress the reboot after finishing the script.
|
||||||
.PARAMETER UseSetupRemoval
|
.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
|
.PARAMETER Force
|
||||||
Skip user-input.
|
Skip user-input.
|
||||||
.INPUTS
|
.INPUTS
|
||||||
@ -48,11 +48,11 @@ Function Invoke-OfficeUninstall {
|
|||||||
New-Item "$SaRA_DIR" -ItemType Directory
|
New-Item "$SaRA_DIR" -ItemType Directory
|
||||||
}
|
}
|
||||||
if ($UseSetupRemoval) {
|
if ($UseSetupRemoval) {
|
||||||
Write-Host "Invoking default setup methode ..."
|
Write-Host "Invoking default setup method ..."
|
||||||
Invoke-SetupOffice365 "$Office365Setup_URL/purge.xml"
|
Invoke-SetupOffice365 "$Office365Setup_URL/purge.xml"
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
Write-Host "Invoking SaRA methode ..."
|
Write-Host "Invoking SaRA method ..."
|
||||||
Remove-SaRA
|
Remove-SaRA
|
||||||
Write-Host "Downloading most recent SaRA build ..."
|
Write-Host "Downloading most recent SaRA build ..."
|
||||||
Invoke-SaRADownload
|
Invoke-SaRADownload
|
||||||
|
|||||||
42
readme.md
42
readme.md
@ -1,23 +1,35 @@
|
|||||||
# Microsoft Office Removal Tool
|
# Microsoft Office Removal Tool
|
||||||
|
|
||||||
|
```plain
|
||||||
|
___ ___ ___ _____ _____ _____
|
||||||
|
|_ | | |_ | | __| __| |
|
||||||
|
_| |_| | |_| |_ | __| __| | | |
|
||||||
|
|_____|___|_____| |__| |__| |_|_|_|
|
||||||
|
|
||||||
|
Microsoft Office Removal Tool
|
||||||
|
by Aaron Viehl (101 Frankfurt)
|
||||||
|
einsnulleins.de
|
||||||
|
```
|
||||||
|
|
||||||
## Synopsis
|
## 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
|
||||||
|
|
||||||
| Parameter | Usage |
|
| Parameter | Usage |
|
||||||
|---|---|
|
|-------------------|-------------------------------------------------------------------------|
|
||||||
| -InstallOffice365 | The script will try to install the newest Office365 build after removal |
|
| -InstallOffice365 | The script will try to install the newest Office365 build after removal |
|
||||||
| -SuppressReboot | No reboot will be executed after script is done|
|
| -SuppressReboot | No reboot will be executed after script is done |
|
||||||
| -UseSetupRemoval | Will use the official Office365 setup instead of SaRA|
|
| -UseSetupRemoval | Will use the official Office365 setup instead of SaRA |
|
||||||
|-Force | Non-interactive - No user interaction required|
|
| -Force | Non-interactive - No user interaction required |
|
||||||
|
|
||||||
### Notes
|
|
||||||
Version: 1.0
|
|
||||||
|
|
||||||
Author: aaron.viehl@frankfurt.einsnulleins.de
|
|
||||||
|
|
||||||
Creation Date: 2022-02-04
|
|
||||||
|
|
||||||
### Example
|
### Example
|
||||||
``.\msoffice-removal-tool.ps1 -InstallOffice365 -SuppressReboot -Force``
|
|
||||||
|
``.\msoffice-removal-tool.ps1 -InstallOffice365 -SuppressReboot -Force``
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user