Skip to content

Commit

Permalink
fix: workaround no mounted user classes
Browse files Browse the repository at this point in the history
  • Loading branch information
he3als committed Oct 9, 2024
1 parent 58192c4 commit 3ff023a
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,14 @@
title: Disable Automatic Folder Discovery
description: Improves performance in File Explorer by not automatically determining the folder 'type' (such as pictures) for each folder's content.
actions:
- !registryValue:
path: 'HKCU\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags\AllFolders\Shell'
value: 'FolderType'
data: 'NotSpecified'
type: REG_SZ
# Use this instead once AME fixes hives issue
# - !registryValue:
# path: 'HKCU\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags\AllFolders\Shell'
# value: 'FolderType'
# data: 'NotSpecified'
# type: REG_SZ
- !cmd:
command: 'reg import "AtlasDesktop\4. Interface Tweaks\File Explorer Customization\Automatic Folder Discovery\Disable Automatic Folder Discovery (default).reg"'
exeDir: true
wait: true
runas: currentUserElevated
16 changes: 11 additions & 5 deletions src/playbook/Configuration/tweaks/qol/explorer/disable-gallery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,14 @@ title: Hide Gallery in File Explorer
description: Hides the new 23H2 'Gallery' in File Explorer for viewing pictures
builds: [ '>=22000' ]
actions:
- !registryValue:
path: 'HKCU\SOFTWARE\Classes\CLSID\{e88865ea-0e1c-4e20-9aa6-edcd0212c87c}'
value: 'System.IsPinnedToNameSpaceTree'
data: '0'
type: REG_DWORD
# Use this instead once AME fixes hives issue
# - !registryValue:
# path: 'HKCU\SOFTWARE\Classes\CLSID\{e88865ea-0e1c-4e20-9aa6-edcd0212c87c}'
# value: 'System.IsPinnedToNameSpaceTree'
# data: '0'
# type: REG_DWORD
- !cmd:
command: 'reg import "AtlasDesktop\4. Interface Tweaks\File Explorer Customization\Gallery\Disable Gallery (default).reg"'
exeDir: true
wait: true
runas: currentUserElevated
3 changes: 3 additions & 0 deletions src/playbook/Executables/AtlasModules/Scripts/newUsers.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ Set-LockscreenImage
# Disable 'Network' in navigation pane
reg import "$atlasDesktop\3. General Configuration\File Sharing\Network Navigation Pane\Disable Network Navigation Pane (default).reg" *>$null

# Disable Automatic Folder Discovery
reg import "$atlasDesktop\4. Interface Tweaks\File Explorer Customization\Automatic Folder Discovery\Disable Automatic Folder Discovery (default).reg" *>$null

# Set visual effects
& "$atlasDesktop\4. Interface Tweaks\Visual Effects (Animations)\Atlas Visual Effects (default).cmd" /silent

Expand Down

0 comments on commit 3ff023a

Please sign in to comment.