- Windows Build/Version
- Windows 11 Home Version 25H2
My Computer
At a glance
Windows 11
- OS
- Windows 11
- Computer type
- Laptop
- Manufacturer/Model
- HP
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Remove all of them..., then add them, one at a time, in the order you wish them to appear.Does anyone know of any way that would allow the shortcuts in File Explorer's Quick Access toolbar to be re-arranged?
Thank you, I appreciate it.My answer is: you can (re)arrange them by removing all, then adding the desired ones, one at a time, doing so in the order you wish them to appear on the bar.
Thank you, I appreciate it.
But, I already knew that I could do this. I don't want to, though. I was wondering if there were any way, like we can re-arrange pinned items in Taskbar.
So, . . . Is your answer to my question: "no"?

No.I was wondering if there were any way, like we can re-arrange pinned items in Taskbar.
I guess so.So, . . . Is your answer to my question: "no"?
$filepath = "$env:UserProfile\Desktop\QAT.xml"
$bytes = (Get-ItemProperty -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Ribbon' -Name 'QatItems').QatItems
$xml = [xml][System.Text.Encoding]::UTF8.GetString($bytes)
$StringWriter = New-Object System.IO.StringWriter
$XmlWriter = New-Object System.XMl.XmlTextWriter $StringWriter
$XmlWriter.Formatting = 'indented'
$XmlWriter.Indentation = 2
$xml.WriteContentTo($XmlWriter)
$XmlWriter.Flush()
$StringWriter.Flush()
$StringWriter.ToString() | Out-File $filepath
$bytes = [System.Text.Encoding]::Unicode.GetBytes(([xml](Get-Content $filepath)).OuterXml)
Set-ItemProperty -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Ribbon' -Name 'QAtItems' -Value $bytes -Type Binary
visible="false" appear above the ones with visible="true" (if any). The ones with visible="false" are those that are unchecked in the menu list (in the menu that opens when you click on the little upside down "eject" button on the right of the toolbar). These ones appear in ascending numerical order it seems. There's only six controls that appear in the menu list, but they aren't the only ones that you can add to the toolbar.visible="true".