Skip to content

Instantly share code, notes, and snippets.

@irnoham
irnoham / RemoveApps.ps1
Created June 10, 2024 20:08 — forked from wise-io/RemoveApps.ps1
PowerShell script to silently remove various Windows Store applications.
# Remove unnecessary packages
$Allowlist = @(
'DellCommandUpdate', # Dell Command Update app
'HPPrinterControl' # HP Smart app
)
$Identifiers = @(
'AcerIncorporated', # Acer Identifier
'AD2F1837', # HP Identifier
@irnoham
irnoham / CleanStart.ps1
Created June 10, 2024 20:07 — forked from wise-io/CleanStart.ps1
Cleans up the taskbar and resets the default start menu layout to remove ads.
# Cleans up default start menu and taskbar (some settings require Windows Pro)
function Install-PSModule {
param(
[Parameter(Position = 0, Mandatory = $true)]
[String[]]$Modules
)
Write-Output "`nChecking for necessary PowerShell modules..."
try {