Below is a Powershell script which will disable the F1 help in windows. Basically, it takes control over helppane.exe and then renames it. Thankfully, if windows can't find the file, it will not through an error. If you want to restore the F1 help, just rename the executable back.
takeown /f c:\windows\helppane.exe $acl = Get-Acl "C:\Windows\HelpPane.exe" $rule = New-Object System.Security.AccessControl.FileSystemAccessRule("$([Environment]::UserDomainName)\$([Environment]::UserName)","FullControl","Allow") $acl.SetAccessRule($rule) Set-Acl "C:\Windows\HelpPane.exe" $acl Rename-Item "C:\Windows\HelpPane.exe" "C:\Windows\HelpPane1.exe"This may work on other versions of windows, but I have only tested this on Windows 8.1.
No comments:
Post a Comment