mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2024-11-14 14:45:52 -06:00
7a0c40420e
* remove policies in tweaks.json * add proper console log
55 lines
1.6 KiB
PowerShell
55 lines
1.6 KiB
PowerShell
function Set-WinUtilRegistry {
|
|
<#
|
|
|
|
.SYNOPSIS
|
|
Modifies the registry based on the given inputs
|
|
|
|
.PARAMETER Name
|
|
The name of the key to modify
|
|
|
|
.PARAMETER Path
|
|
The path to the key
|
|
|
|
.PARAMETER Type
|
|
The type of value to set the key to
|
|
|
|
.PARAMETER Value
|
|
The value to set the key to
|
|
|
|
.EXAMPLE
|
|
Set-WinUtilRegistry -Name "PublishUserActivities" -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\System" -Type "DWord" -Value "0"
|
|
|
|
#>
|
|
param (
|
|
$Name,
|
|
$Path,
|
|
$Type,
|
|
$Value
|
|
)
|
|
|
|
try {
|
|
if(!(Test-Path 'HKU:\')) {New-PSDrive -PSProvider Registry -Name HKU -Root HKEY_USERS}
|
|
|
|
If (!(Test-Path $Path)) {
|
|
Write-Host "$Path was not found, Creating..."
|
|
New-Item -Path $Path -Force -ErrorAction Stop | Out-Null
|
|
}
|
|
|
|
if ($Value -ne "<RemoveEntry>") {
|
|
Write-Host "Set $Path\$Name to $Value"
|
|
Set-ItemProperty -Path $Path -Name $Name -Type $Type -Value $Value -Force -ErrorAction Stop | Out-Null
|
|
}
|
|
else{
|
|
Write-Host "Remove $Path\$Name"
|
|
Remove-ItemProperty -Path $Path -Name $Name -Force -ErrorAction Stop | Out-Null
|
|
}
|
|
} catch [System.Security.SecurityException] {
|
|
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
|
} catch [System.Management.Automation.ItemNotFoundException] {
|
|
Write-Warning $psitem.Exception.ErrorRecord
|
|
} catch {
|
|
Write-Warning "Unable to set $Name due to unhandled exception"
|
|
Write-Warning $psitem.Exception.StackTrace
|
|
}
|
|
}
|