new script
This commit is contained in:
@@ -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" }
|
||||||
@@ -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" }
|
||||||
Reference in New Issue
Block a user