Files
PowerShell/docs/install-zoom.md
Markus Fleschutz d8690419ea Updated the manuals
2025-06-22 10:38:33 +02:00

62 lines
1.2 KiB
Markdown

The *install-zoom.ps1* Script
===========================
This PowerShell script installs Zoom.
Parameters
----------
```powershell
/Repos/PowerShell/scripts/install-zoom.ps1 [<CommonParameters>]
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
Example
-------
```powershell
PS> ./install-zoom.ps1
```
Notes
-----
Author: Markus Fleschutz | License: CC0
Related Links
-------------
https://github.com/fleschutz/PowerShell
Script Content
--------------
```powershell
<#
.SYNOPSIS
Installs Zoom
.DESCRIPTION
This PowerShell script installs Zoom.
.EXAMPLE
PS> ./install-zoom.ps1
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
try {
"Installing Zoom, please wait..."
& winget install --id Zoom.Zoom --accept-package-agreements --accept-source-agreements
if ($lastExitCode -ne 0) { throw "'winget install' failed" }
"Zoom installed successfully."
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*(page generated by convert-ps2md.ps1 as of 06/22/2025 10:37:37)*