Skip to content

Commit

Permalink
feat: make nearby sharing optional
Browse files Browse the repository at this point in the history
  • Loading branch information
he3als committed Nov 2, 2023
1 parent 8c23a14 commit dc6ae9f
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/playbook/Configuration/tweaks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -255,11 +255,11 @@ tasks:
- tweaks\qol\shell\disable-low-disk-warning.yml
- tweaks\qol\shell\disable-menu-delay.yml
- tweaks\qol\shell\disable-network-location-wizard.yml
- tweaks\qol\shell\disable-shared-experiences.yml
- tweaks\qol\shell\set-unpinned-notification-items.yml
- tweaks\qol\shell\restore-old-context-menu.yml
- tweaks\qol\shell\show-more-pins.yml
- tweaks\qol\shell\no-recommendations-start-menu.yml
- tweaks\qol\shell\disable-nearby-sharing.yml

# -------------------------------------------------------------------------- #
# qol\startup-shutdown #
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
title: Disable Shared Experiences
description: Disables 'Shared Experiences', which is a way of sharing items between advices for privacy and QoL
privilege: TrustedInstaller
actions:
# https://www.elevenforum.com/t/turn-on-or-off-nearby-sharing-in-windows-11.2644/
- !registryValue:
path: 'HKCU\Software\Microsoft\Windows\CurrentVersion\CDP\SettingsPage'
value: 'BluetoothLastDisabledNearShare'
data: '0'
type: REG_DWORD
- !registryValue:
path: 'HKCU\Software\Microsoft\Windows\CurrentVersion\CDP'
value: 'NearShareChannelUserAuthzPolicy'
data: '0'
type: REG_DWORD
- !registryValue:
path: 'HKCU\Software\Microsoft\Windows\CurrentVersion\CDP'
value: 'CdpSessionUserAuthzPolicy'
data: '1'
type: REG_DWORD

This file was deleted.

0 comments on commit dc6ae9f

Please sign in to comment.