PowerShell/docs/install-updates.md

114 lines
2.9 KiB
Markdown
Raw Permalink Normal View History

2024-11-08 12:38:20 +01:00
The *install-updates.ps1* Script
===========================
2021-11-08 21:36:42 +01:00
2024-01-25 13:31:10 +01:00
This PowerShell script installs software updates for the local machine (might need admin rights).
NOTE: Use the script 'list-updates.ps1' to list the latest software updates before.
2021-11-08 21:36:42 +01:00
2023-07-29 10:04:38 +02:00
Parameters
----------
2021-11-08 21:36:42 +01:00
```powershell
2024-11-08 12:35:11 +01:00
/home/markus/Repos/PowerShell/scripts/install-updates.ps1 [<CommonParameters>]
2021-11-08 21:36:42 +01:00
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
2023-07-29 10:04:38 +02:00
Example
-------
2021-11-08 21:36:42 +01:00
```powershell
2023-08-06 21:36:33 +02:00
PS> ./install-updates.ps1
2024-05-19 10:25:56 +02:00
⏳ (1/2) Checking requirements...
✅ Drive C: has 441 GB free (56% of 1TB used)
✅ Swap space has 1GB free (2% of 1GB used)
✅ No pending system reboot
2024-03-27 17:36:59 +01:00
2024-01-25 13:31:10 +01:00
⏳ (2/2) Installing updates from winget and Microsoft Store...
...
2021-11-08 21:36:42 +01:00
```
2023-07-29 10:04:38 +02:00
Notes
-----
2022-11-17 19:46:02 +01:00
Author: Markus Fleschutz | License: CC0
2021-11-08 21:36:42 +01:00
2023-07-29 10:04:38 +02:00
Related Links
-------------
2021-11-08 21:36:42 +01:00
https://github.com/fleschutz/PowerShell
2023-07-29 10:04:38 +02:00
Script Content
--------------
2022-11-17 20:05:34 +01:00
```powershell
2022-11-17 20:02:26 +01:00
<#
.SYNOPSIS
2023-09-20 17:05:11 +02:00
Installs software updates
2022-11-17 20:02:26 +01:00
.DESCRIPTION
2024-01-25 13:31:10 +01:00
This PowerShell script installs software updates for the local machine (might need admin rights).
NOTE: Use the script 'list-updates.ps1' to list the latest software updates before.
2022-11-17 20:02:26 +01:00
.EXAMPLE
2023-08-06 21:36:33 +02:00
PS> ./install-updates.ps1
2024-05-19 10:25:56 +02:00
⏳ (1/2) Checking requirements...
✅ Drive C: has 441 GB free (56% of 1TB used)
✅ Swap space has 1GB free (2% of 1GB used)
✅ No pending system reboot
2024-03-27 17:36:59 +01:00
2024-01-25 13:31:10 +01:00
⏳ (2/2) Installing updates from winget and Microsoft Store...
...
2022-11-17 20:02:26 +01:00
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
try {
2024-01-25 13:31:10 +01:00
$stopWatch = [system.diagnostics.stopwatch]::startNew()
2022-11-17 20:02:26 +01:00
if ($IsLinux) {
2024-05-19 10:25:56 +02:00
"⏳ (1/5) Checking requirements..."
& "$PSScriptRoot/check-smart-devices.ps1"
2024-01-25 13:31:10 +01:00
& "$PSScriptRoot/check-drive-space.ps1" /
2024-03-27 17:36:59 +01:00
& "$PSScriptRoot/check-swap-space.ps1"
2024-05-19 10:25:56 +02:00
& "$PSScriptRoot/check-pending-reboot.ps1"
Start-Sleep -seconds 3
2024-03-27 17:36:59 +01:00
""
2024-01-25 13:31:10 +01:00
"⏳ (2/5) Querying latest package information..."
& sudo apt update
2022-11-17 20:02:26 +01:00
2024-01-25 13:31:10 +01:00
"⏳ (3/5) Removing obsolete packages..."
2022-11-17 20:02:26 +01:00
& sudo apt autoremove --yes
2024-01-25 13:31:10 +01:00
"⏳ (4/5) Upgrading installed packages..."
& sudo apt upgrade --yes
"⏳ (5/5) Upgrading installed Snaps..."
2022-11-17 20:02:26 +01:00
& sudo snap refresh
2023-09-20 17:05:11 +02:00
} elseif ($IsMacOS) {
2023-05-26 12:20:18 +02:00
Write-Progress "⏳ Installing updates..."
2023-09-20 17:05:11 +02:00
& sudo softwareupdate -i -a
Write-Progress -completed " "
} else {
2024-05-19 10:25:56 +02:00
# Windows:
"⏳ (1/2) Checking requirements..."
& "$PSScriptRoot/check-smart-devices.ps1"
2024-01-25 13:31:10 +01:00
& "$PSScriptRoot/check-drive-space.ps1" C
2024-03-27 17:36:59 +01:00
& "$PSScriptRoot/check-swap-space.ps1"
2024-05-19 10:25:56 +02:00
& "$PSScriptRoot/check-pending-reboot.ps1"
Start-Sleep -seconds 3
2024-03-27 17:36:59 +01:00
""
2024-01-25 13:31:10 +01:00
"⏳ (2/2) Installing updates from winget and Microsoft Store..."
""
2023-09-20 17:05:11 +02:00
& winget upgrade --all --include-unknown
2022-11-17 20:02:26 +01:00
}
2024-01-25 13:31:10 +01:00
[int]$elapsed = $stopWatch.Elapsed.TotalSeconds
2024-05-19 10:25:56 +02:00
"✅ Updates installed in $($elapsed)s."
2022-11-17 20:02:26 +01:00
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
2022-11-17 20:05:34 +01:00
```
2022-11-17 20:02:26 +01:00
2024-11-20 11:52:20 +01:00
*(generated by convert-ps2md.ps1 as of 11/20/2024 11:51:54)*