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
| # Remove unnecessary packages | |
| $Allowlist = @( | |
| 'DellCommandUpdate', # Dell Command Update app | |
| 'HPPrinterControl' # HP Smart app | |
| ) | |
| $Identifiers = @( | |
| 'AcerIncorporated', # Acer Identifier | |
| 'AD2F1837', # HP Identifier |
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
| # 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 { |