mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-21 15:33:15 +01:00
114 lines
2.9 KiB
Markdown
114 lines
2.9 KiB
Markdown
The *install-updates.ps1* Script
|
|
===========================
|
|
|
|
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.
|
|
|
|
Parameters
|
|
----------
|
|
```powershell
|
|
/home/markus/Repos/PowerShell/scripts/install-updates.ps1 [<CommonParameters>]
|
|
|
|
[<CommonParameters>]
|
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
|
```
|
|
|
|
Example
|
|
-------
|
|
```powershell
|
|
PS> ./install-updates.ps1
|
|
⏳ (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
|
|
|
|
|
|
|
|
⏳ (2/2) Installing updates from winget and Microsoft Store...
|
|
...
|
|
|
|
```
|
|
|
|
Notes
|
|
-----
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
Related Links
|
|
-------------
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
Script Content
|
|
--------------
|
|
```powershell
|
|
<#
|
|
.SYNOPSIS
|
|
Installs software updates
|
|
.DESCRIPTION
|
|
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.
|
|
.EXAMPLE
|
|
PS> ./install-updates.ps1
|
|
⏳ (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
|
|
|
|
⏳ (2/2) Installing updates from winget and Microsoft Store...
|
|
...
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz | License: CC0
|
|
#>
|
|
|
|
try {
|
|
$stopWatch = [system.diagnostics.stopwatch]::startNew()
|
|
|
|
if ($IsLinux) {
|
|
"⏳ (1/5) Checking requirements..."
|
|
& "$PSScriptRoot/check-smart-devices.ps1"
|
|
& "$PSScriptRoot/check-drive-space.ps1" /
|
|
& "$PSScriptRoot/check-swap-space.ps1"
|
|
& "$PSScriptRoot/check-pending-reboot.ps1"
|
|
Start-Sleep -seconds 3
|
|
""
|
|
"⏳ (2/5) Querying latest package information..."
|
|
& sudo apt update
|
|
|
|
"⏳ (3/5) Removing obsolete packages..."
|
|
& sudo apt autoremove --yes
|
|
|
|
"⏳ (4/5) Upgrading installed packages..."
|
|
& sudo apt upgrade --yes
|
|
|
|
"⏳ (5/5) Upgrading installed Snaps..."
|
|
& sudo snap refresh
|
|
} elseif ($IsMacOS) {
|
|
Write-Progress "⏳ Installing updates..."
|
|
& sudo softwareupdate -i -a
|
|
Write-Progress -completed " "
|
|
} else {
|
|
# Windows:
|
|
"⏳ (1/2) Checking requirements..."
|
|
& "$PSScriptRoot/check-smart-devices.ps1"
|
|
& "$PSScriptRoot/check-drive-space.ps1" C
|
|
& "$PSScriptRoot/check-swap-space.ps1"
|
|
& "$PSScriptRoot/check-pending-reboot.ps1"
|
|
Start-Sleep -seconds 3
|
|
""
|
|
"⏳ (2/2) Installing updates from winget and Microsoft Store..."
|
|
""
|
|
& winget upgrade --all --include-unknown
|
|
}
|
|
[int]$elapsed = $stopWatch.Elapsed.TotalSeconds
|
|
"✅ Updates installed in $($elapsed)s."
|
|
exit 0 # success
|
|
} catch {
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|
|
```
|
|
|
|
*(generated by convert-ps2md.ps1 as of 11/20/2024 11:51:54)*
|