new script

This commit is contained in:
2020-10-25 09:39:25 -04:00
parent 978373ebe2
commit 9665059675
2 changed files with 32 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
$RegKey = 'HKCU:SOFTWARE\Microsoft\Windows\CurrentVersion\ImmersiveShell'
. 'C:\Users\dyoder\Emberkom\Data\Projects\development\management-scripts\Tools.ps1'
## Make sure endpoint is running at least Windows 8
If ( IsWindowsVersion -ge '6.3' )
{
LogMsg "Disabling tabled mode"
Try
{
Set-ItemProperty $RegKey -Name 'TabletMode' -Value 0
Set-ItemProperty $RegKey -Name 'SignInMode' -Value 1
}
Catch { LogErr $_.Exception.Message }
}
Else { LogMsg "Tablet mode is only supported on Windows 8 and higher" }
+18
View File
@@ -0,0 +1,18 @@
If ( IsAdmin )
{
If ( Test-Path 'HKLM:SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player NPAPI' )
{ $RegKey = 'HKLM:SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player NPAPI' }
ElseIf ( Test-Path 'HKLM:SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player NPAPI' )
{ $RegKey = 'HKLM:SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player NPAPI' }
If ( $RegKey )
{
LogMsg "Found uninstall string: ${UninstallString}"
$UninstallString = (Get-ItemProperty -Path $RegKey).UninstallString
$UninstallProgram = $UninstallString -replace ' -maintain plugin', ''
LogMsg "Running: ""${UninstallProgram}"" -uninstall"
Try { Start-Process "${UninstallProgram}" -ArgumentList "-uninstall" -Wait }
Catch { LogErr $_.Exception.Message }
}
Else { LogMsg "Adobe Flash Player is not installed" }
}
Else { LogMsg "Must have administrative privileges to uninstall Adobe Flash" }