This file contains 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
# Removes Meraki Systems Manager Agent | |
$App = Get-ChildItem -Path HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\ | Get-ItemProperty | Where-Object { $_.DisplayName -like 'Meraki Systems Manager Agent' } | Select-Object -Property DisplayName, UninstallString | |
foreach ($Ver in $App) { | |
if ($Ver.UninstallString) { | |
$DisplayName = $Ver.DisplayName | |
$Uninst = $Ver.UninstallString | |
Write-Output "Uninstalling $DisplayName..." | |
cmd /c $Uninst /qn | |
} |
This file contains 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
# Downloads and installs fonts from a zip archive | |
param ( | |
[Parameter(Mandatory = $true)] | |
[ValidatePattern( '^(https)://' )] | |
[System.Uri]$URL | |
) | |
$FontRegURL = '' # Add download link to FontReg here | |
$FontReg = "$env:temp\FontReg.exe" | |
$Archive = "$env:temp\Fonts.zip" |
This file contains 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 | |
Backup all SQL databases | |
.DESCRIPTION | |
Performs a backup of all SQL databases on all SQL instances of localhost | |
.NOTES | |
Backups are stored in the default backup location of the server under the name databasename.bak | |
Previous backup files named databasename.bak will be overwritten | |
Backups are not performed when the -History switch is used | |
.EXAMPLE |
This file contains 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
# Removes Apple QuickTime | |
$Paths = 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall', 'HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall' | |
$App = Get-ChildItem -Path $Paths | Get-ItemProperty | Where-Object { $_.DisplayName -match 'quicktime' } | Select-Object -Property DisplayName, UninstallString | |
foreach ($Ver in $App) { | |
if ($Ver.UninstallString) { | |
$DisplayName = $Ver.DisplayName | |
$Uninst = $Ver.UninstallString -replace '/I', '/x ' | |
Write-Output "Uninstalling $DisplayName..." | |
cmd /c $Uninst /qn |
This file contains 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
SplashtopSOS.ps1 | |
# Downloads Splashtop SOS & creates desktop shortcut | |
$Executable = "$env:SystemDrive\Utilities\SplashtopSOS.exe" | |
$DownloadURL = 'https://download.splashtop.com/sos/SplashtopSOS.exe' | |
try { | |
# Create Directory | |
if (!(Test-Path (Split-Path $Executable))) { New-Item -ItemType Directory -Force -Path (Split-Path $Executable) } | |
# Download Splashtop SOS |
This file contains 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 | |
Creates a System Restore Point | |
.DESCRIPTION | |
Enables System Protection on all local drives and creates a System Restore Point. | |
.EXAMPLE | |
./CreateRestorePoint.ps1 -Description 'Installed Quickbooks' | |
./CreateRestorePoint.ps1 -Force | |
#> |
This file contains 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 | |
Installs Microsoft Office 365 | |
.DESCRIPTION | |
Installs Microsoft Office 365 using a default configuration xml, unless a custom xml is provided. | |
WARNING: This script will remove all existing office installations if used with the default configuration xml. | |
.PARAMETER Config | |
File path to custom configuration xml for office installations. | |
.PARAMETER Cleanup | |
Removes office installation files after install. |
This file contains 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
# Installs PowerShell v7 | |
param( | |
[switch]$x86 # Installs 32-bit PowerShell regardless of architecture | |
) | |
if ($x86) { $Architecture = 'x86' } | |
else { | |
switch ($env:PROCESSOR_ARCHITECTURE) { | |
'AMD64' { $Architecture = 'x64' } | |
'x86' { $Architecture = 'x86' } |
This file contains 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
# Installs Splashtop for RMM Viewer | |
$Installer = "$env:Temp\SplashtopViewer.exe" | |
$DownloadURL = '' # Add download URL from your RMM provider here | |
$FileHandlerPrefix = 'st-rmm://*' | |
$RegValue = '200' | |
try { | |
# Download Splashtop for RMM Viewer | |
Write-Output 'Downloading Splashtop for RMM viewer...' | |
Invoke-WebRequest -Uri $DownloadURL -OutFile $Installer |
This file contains 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 | |
Manages browser extensions through local group policy objects (LGPO). | |
.DESCRIPTION | |
This script sets up browser extension allow-listing (whitelisting) though LGPO. | |
Extensions can be added to the allow list by passing their extension ID via the -ChromeExtIDs or -EdgeExtIDs parameters. | |
.LINK | |
Chrome Extension lookup URL: https://chrome.google.com/webstore/detail/[ID] | |
Edge Extension lookup URL: https://microsoftedge.microsoft.com/addons/detail/[ID] | |
PolicyFileEditor PowerShell Module: https://github.com/dlwyatt/PolicyFileEditor |