Skip to content

Instantly share code, notes, and snippets.

View Trael-Kun's full-sized avatar
🏍️
Actually working, for real

Bill Trael-Kun

🏍️
Actually working, for real
View GitHub Profile
@Trael-Kun
Trael-Kun / New-Background_ForAppxTeams.ps1
Last active May 5, 2025 05:22
Resize and rename images for use as New Teams (appx) backgrounds
<#
.SYNOPSIS
Resizes and renames images for use as Teams backgrounds
.DESCRIPTION
Automate MS Teams Backgrounds;
- create large & small copies
- generate GUID name
- copy to %LOCALAPPDATA%\Packages\MSTeams_8wekyb3d8bbwe\LocalCache\Microsoft\MSTeams\Backgrounds\Uploads
@Trael-Kun
Trael-Kun / MSI_Get-GuidCodes.ps1
Created May 2, 2025 07:20
PowerShell script to find all installed application GUID codes
### Lists the MSI install & update codes (GUIDs) of software installed on the specified PC and outputs it as a CSV file
## Script info
$VERSION = "0.5.8"
# Show where script is stored & file name
$ScriptPath = $PSScriptRoot
$ScriptName = $MyInvocation.MyCommand.Name
<#
Adapted from https://stackoverflow.com/questions/46637094/how-can-i-find-the-upgrade-code-for-an-installed-msi-file/46637095#46637095