mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2024-11-15 07:05:51 -06:00
9b206b351d
commit c674d5eb605b549d8d8b247749954a98197277b4 Author: Saksham Singh <sakshamsingh.93502@gmail.com> Date: Wed Sep 11 19:34:44 2024 +0530 desc update commit 3d8bf2bdc9c382a9f087b9ac6e63cb8604c99698 Author: Saksham Singh <sakshamsingh.93502@gmail.com> Date: Wed Sep 11 19:30:23 2024 +0530 Added Razer Block Added the razer block by chris titus under the Fixes Section
23 lines
1.0 KiB
PowerShell
23 lines
1.0 KiB
PowerShell
function Invoke-WPFRazerBlock {
|
|
<#
|
|
.SYNOPSIS
|
|
Blocks razer software automatic install.
|
|
.DESCRIPTION
|
|
It disables the automatic driver installation and denies write permission of razer folder to system which prevents the automatic install.
|
|
#>
|
|
$RazerPath = "C:\Windows\Installer\Razer"
|
|
|
|
# Disable driver auto-install via registry
|
|
Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\DriverSearching" -Name "SearchOrderConfig" -Type DWord -Value 0
|
|
Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Device Installer" -Name "DisableCoInstallers" -Type DWord -Value 1
|
|
|
|
# Remove and lock install directory
|
|
Remove-Item $RazerPath -Recurse -Force
|
|
New-Item -Path "C:\Windows\Installer\" -Name "Razer" -ItemType "directory"
|
|
$Acl = Get-Acl $RazerPath
|
|
$Ar = New-Object System.Security.AccessControl.FileSystemAccessRule("NT AUTHORITY\SYSTEM", "Write", "ContainerInherit,ObjectInherit", "None", "Deny")
|
|
|
|
$Acl.SetAccessRule($Ar)
|
|
Set-Acl $RazerPath $Acl
|
|
}
|