Skip to content

Commit

Permalink
Added "Disable Bing search suggestions in Start Menu" (#117)
Browse files Browse the repository at this point in the history
* add #247

* requested changes

* fix syntax

---------

Co-authored-by: Snowz <[email protected]>
Co-authored-by: undergroundwires <[email protected]>
  • Loading branch information
3 people authored Jan 20, 2024
1 parent c6ebba8 commit beb4042
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/application/collections/windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5272,6 +5272,25 @@ actions:
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WCN\Registrars" /v "DisableUPnPRegistrar" /t REG_DWORD /d 1 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WCN\Registrars" /v "DisableWPDRegistrar" /t REG_DWORD /d 1 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WCN\Registrars" /v "EnableRegistrars" /t REG_DWORD /d 1 /f
-
name: Disable clipboard history
recommend: standard
docs:
- https://github.com/undergroundwires/privacy.sexy/issues/247
- https://ghostvolt.com/blog/Is-the-Windows-Clipboard-Function-History-or-Sync-Secure.html
call:
-
function: DisablePerUserService
parameters:
# Check (system-wide): (Get-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Services\cbdhsvc").Start
# Check (per-user): (Get-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Services\cbdhsvc_*").Start
serviceName: cbdhsvc
defaultStartupMode: Automatic
-
function: RunInlineCode
parameters:
code: reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "AllowClipboardHistory" /t REG_DWORD /d 0 /f
revertCode: reg delete "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "AllowClipboardHistory" /f
-
category: Secure cryptography on IIS (Internet Information Services) server
children:
Expand Down

0 comments on commit beb4042

Please sign in to comment.