You’re not wrong to be suspicious — robocopy did exactly what you told it to copy, but that folder didn’t contain the Start11 “pinned grid” data you expected. Short answer: Start11 keeps its pinned layout separately (not as a collection of .lnk files in the User Pinned folder), so copying %AppData%...\User Pinned\StartMenu will only capture whatever real .lnk files Windows stores there (in your case just the single “Windows Menu” shortcut). The Start11 pinned grid/layout is stored in Start11’s settings (registry) and/or Start11’s own config, so you need to back that up too.
Why you only see “Windows Menu.lnk”
- Robocopy copied whatever was actually in %AppData%\Roaming\Microsoft\Internet Explorer\Quick Launch\User Pinned\StartMenu at the time — that folder contained only Windows Menu.lnk, so that’s the only thing that was backed up. Your Start11 pinned layout is not fully represented by that folder. (This matches what you saw in the robocopy output.
What to back up so you can restore everything later
1) The per‑user Start pinned .lnk files (you already did this)
- %AppData%\Microsoft\Internet Explorer\Quick Launch\User Pinned\StartMenu
- Command (run as the same user):
robocopy "%AppData%\Microsoft\Internet Explorer\Quick Launch\User Pinned\StartMenu" "D:\Backups\StartMenuPins\<snapshot>" /E
2) The Start Menu Programs folders (where actual shortcuts live)
- Per‑user:
%AppData%\Microsoft\Windows\Start Menu\Programs
- All users:
C:\ProgramData\Microsoft\Windows\Start Menu\Programs
- Back them up too (robocopy /E) — many Start tiles point to shortcuts in those folders.
3) Start11 settings (this is the important one)
- Start11 stores most configuration (including the Start11 layout/pinned mapping) in the user registry. The community and Stardock posts point to the Stardock key (Start8 key used by Start11); backing up that registry key preserves Start11 settings.
- Export the key (while signed in as your normal user) to a .reg file:
reg export "HKCU\SOFTWARE\Stardock\Start8" "D:\Backups\Start11_Settings.reg"
- To restore later (same user account), import:
reg import "D:\Backups\Start11_Settings.reg"
then restart Explorer (or sign out/sign in) so Start11 reloads that config.
Notes about Start11’s GUI export
- Start11 has a GUI Export/Import for settings in some builds, but users have reported it can misbehave or be broken by certain 3rd‑party theming tools. If the GUI export works for you, it’s fine; otherwise use the registry export as above.
Safe step‑by‑step to make a complete backup now
1) Back up the per‑user pinned folder (you did this already with robocopy).
2) Back up the Start Menu Programs folders:
robocopy "%AppData%\Microsoft\Windows\Start Menu\Programs" "D:\Backups\StartMenuPrograms\User" /E
robocopy "C:\ProgramData\Microsoft\Windows\Start Menu\Programs" "D:\Backups\StartMenuPrograms\AllUsers" /E
3) Export Start11 settings (registry):
reg export "HKCU\SOFTWARE\Stardock\Start8" "D:\Backups\Start11_Settings.reg"
4) Export Taskband (optional — taskbar pins / mappings):
reg export "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Taskband" "D:\Backups\Taskband.reg"
How to restore everything later (recommended order)
1) Copy back the Program shortcuts (robocopy from backup to Program folders).
2) Copy back the User Pinned .lnk files into:
%AppData%\Microsoft\Internet Explorer\Quick Launch\User Pinned\StartMenu
3) Import the Start11 registry key (reg import), then restart Explorer or sign out/in.
4) If Start11 has an “Import” or “Restore” in its UI, you can try it after the registry import — but the registry import should restore the core settings.
Why the registry import is necessary
- Start11 writes its layout/mapping into its registry key, and the UI draws the pinned grid from that data — the per‑user “User Pinned” folder can be empty or incomplete if Start11 uses virtual mapping. Backing up only the User Pinned folder will often miss the Start11 layout.
If you want, I can:
- Give you the exact commands to run now (I can produce a one‑shot PowerShell script that:
- makes a dated snapshot of the two StartMenu Programs folders,
- copies the User Pinned folder,
- exports the Stardock Start8 registry key, and
- exports the Taskband key),
- Or provide the exact Restore steps you can paste later.
Which would you prefer — I’ll create the PowerShell snapshot script (and an accompanying scheduled‑task example), or just give the single reg export + robocopy commands to run manually now?