Recent content by Rubic


  1. Personalization Add or Remove Windows C Drive in Navigation Pane of File Explorer in Windows 11

    @Brink I have compiled my knowledge - assisted by Claude AI - into a concise technical guide on creating arbitrary objects in the Explorer navigation pane / “This PC” (including the relevant registry keys and behavior). Repository link: Nilesoft-Shell-Snippets/ext.others/treeview.guide.md at...
  2. Personalization Add or Remove Folders under This PC in File Explorer in Windows 11

    I'm looking for enthusiasts to experiment with Nilesoft Shell script. https://github.com/RubicBG/Nilesoft-Shell-Snippets/blob/main/ext.others/treeview.advance.md I'll probably finish it the next time I reinstall Windows, but it still works satisfactorily for me - Have fun!
  3. General Change Folder to Open File Explorer to by Default in Windows 11

    the data for `LaunchToSyncRoot` is a key from `HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\SyncRootManager`. By default it takes the first one alphabetically (not the first registered SyncRoot provider, as I thought). Мanual editing works
  4. General Change Folder to Open File Explorer to by Default in Windows 11

    @Brink Found a new registry value on Build 26200.7171 that extends the File Explorer default location options: Registry Location HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced New Value Name: LaunchToSyncRoot (REG_SZ) Works with: LaunchTo=dword:00000004 Data...
  5. Phone Enable or Disable Android Phone Access in File Explorer in Windows 11

    go to HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\ and check all GUID keys one by one - find the one that has data CrossDevice!!S-1-5-.... maybe for this object Windows generates a random GUID key - so it should be different
  6. Phone Enable or Disable Android Phone Access in File Explorer in Windows 11

    This setting only toggles the display/hide of the item in the navigation panel. Said another way: first you follow the tutorial to set it to show in the navigation panel, once it appears, you can hide or show it without having to configure anything else. The effect is immediate, you can restart...
  7. Phone Enable or Disable Android Phone Access in File Explorer in Windows 11

    Remove Android Phone Access from Navigation Pane in File Explorer for Current User Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Classes\CLSID\{5CC6BF81-9BAA-42D4-AD83-18DCA4724654}] "System.IsPinnedToNameSpaceTree"=dword:00000000 Add Android Phone Access from Navigation...
  8. General Restart Windows Explorer.exe Process in Windows 11

    I looked at your script - good work. I also tested it with the tabs - it restores them as a new window with scrolling position and object selection only. But I often have to restart explorer.exe so that Windows launches a fresh instance of the shell process (shell processes are the main target)...
  9. General Restart Windows Explorer.exe Process in Windows 11

    $p=(New-Object -ComObject Shell.Application).Windows()|?{$_.FullName -like '*explorer.exe'}|%{try{$_.Document.Folder.Self.Path}catch{}};taskkill /f /im explorer.exe;start explorer.exe;sleep 3;$p|?{$_}|%{start explorer.exe $_} What it does: Saves paths of all currently open Explorer windows...
  10. General Create Shortcuts to Open Pages in Settings in Windows 11

    Note on SystemSettings.dll and ms-settings: URI Support in Windows The availability and functionality of ms-settings: URI commands in Windows is governed by the version of the SystemSettings.dll file, which varies between Windows builds. Each version of this DLL supports a specific set of URI...
  11. Personalization Enable or Disable Automatically Hide Taskbar in Windows 11

    Add-Type -TypeDefinition 'using System; using System.Runtime.InteropServices; public class Program { [DllImport("shell32.dll")] public static extern IntPtr SHAppBarMessage(uint dwMessage, ref APPBARDATA pData); public const uint ABM_GETSTATE = 0x00000004; public const uint ABM_SETSTATE =...
  12. Time and Language Show or Hide Time and Date on Taskbar System Tray in Windows 11

    Windows 11 23H2 Build 22631.2715 (KB5032190) -> ShowSystrayDateTimeValueName it would be nice if someone could confirm this information
Back
Top Bottom