This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### 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 |