function Invoke-WinUtilSnapFlyout { <# .SYNOPSIS Disables/Enables Snap Assist Flyout on startup .PARAMETER Enabled Indicates whether to enable or disable Snap Assist Flyout on startup #> Param($Enabled) Try{ if ($Enabled -eq $false){ Write-Host "Enabling Snap Assist Flyout On startup" $value = 1 } else { Write-Host "Disabling Snap Assist Flyout On startup" $value = 0 } # taskkill.exe /F /IM "explorer.exe" $Path = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" taskkill.exe /F /IM "explorer.exe" Set-ItemProperty -Path $Path -Name EnableSnapAssistFlyout -Value $value Start-Process "explorer.exe" } 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 } }