Is it possible programmatically add folders to the Windows 10 Quick Access panel in the explorer window?

There is a simple way to do it in powershell (at least) :

$o = new-object -com shell.application
$o.Namespace('c:\My Folder').Self.InvokeVerb("pintohome")

Hope it helps.

Leave a Comment