Advanced Tips for Power Users: Unlocking PlacesBar Tweaker Features
Overview
PlacesBar Tweaker customizes the Windows Explorer/Office “Places Bar” shortcuts (the quick-access icons shown in file dialog panes). Advanced users can use it to add arbitrary folders, system locations, and custom commands, and to deploy settings across machines.
Advanced Tips
-
Add deep-folder links
- Use the full folder path (e.g., C:\Projects\2026\ClientX) when adding entries to jump directly to nested folders.
-
Use shell namespace identifiers
- For system locations (This PC, Control Panel, Network) add GUID-based shell namespace paths:
- Example format:
::{20D04FE0-3AEA-1069-A2D8-08002B30309D}for This PC.
- Example format:
- For system locations (This PC, Control Panel, Network) add GUID-based shell namespace paths:
-
Add virtual/filtered views
- Point entries to search-ms or library URIs to show filtered views:
- Example:
search-ms:query=*.docx&crumb=location:C:\Projectsto surface DOCX files in a folder.
- Example:
- Point entries to search-ms or library URIs to show filtered views:
-
Insert executable or script shortcuts
- Place links to scripts (.bat, .ps1) or apps to run from file dialogs (useful for quick utilities). Ensure scripts are signed or sourced safely.
-
Use environment variables
- Include %USERPROFILE%, %APPDATA% to create portable entries that adapt per user:
- Example:
%USERPROFILE%\Dropbox\Work.
- Example:
- Include %USERPROFILE%, %APPDATA% to create portable entries that adapt per user:
-
Deploy via registry export/import
- After configuring, export the relevant registry keys to a .reg file to replicate across machines:
- Keys commonly modified:
HKEY_CURRENTUSER\Software\Microsoft\Windows\CurrentVersion\Policies\comdlg32\Placesbar(or per-version locations). - Test on a non-critical machine first.
- Keys commonly modified:
- After configuring, export the relevant registry keys to a .reg file to replicate across machines:
-
Combine with Group Policy / scripting
- Wrap the .reg import in a logon script or use Group Policy Preferences to apply for multiple users in enterprise environments.
-
Backup before changes
- Always export the existing registry keys and create a system restore point before applying changes.
-
Use with account isolation
- For multi-user systems, prefer per-user settings (%USERPROFILE%) to avoid cross-account conflicts.
-
Troubleshoot common issues
- If entries don’t appear:
- Restart explorer.exe or sign out/in.
- Verify paths exist and are accessible.
- Check for conflicting Group Policy settings that enforce default Places Bar.
- If entries don’t appear:
Security and Safety
- Avoid adding network paths or executables from untrusted sources.
- Be cautious with scripts in Places Bar—file dialogs can run them if opened inadvertently.
Quick Example Registry snippet
Use this pattern to programmatically set 5 places (replace paths as needed):
Code
Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\comdlg32\Placesbar] “Place0”=“C:\Projects\ClientX” “Place1”=“C:\Users\YourUser\Documents” “Place2”=“D:\Shared” “Place3”=“%USERPROFILE%\Dropbox\Work” “Place4”=“::{20D04FE0-3AEA-1069-A2D8-08002B30309D}”
Final note
Test changes gradually and keep backups to restore defaults if needed.
Leave a Reply