When you install Windows on a new computer, customizing Windows takes a lot of time and effort. One such thing is the taskbar. You may have to redo the procedure of pinning the applications which you frequently use. If you’re planning to move to a new Windows PC or a new user profile on the same computer, and wondering how to transfer the pinned taskbar items, then this article is for you.
This post explains how to backup and restore the pinned Taskbar items in Windows 10 and earlier.
Note: If you’re using Windows 10, please disable Controlled folder access temporarily to run the batch file. Controlled folder access may block write access to your Desktop and other protected locations.
Backup and Restore Taskbar Pinned Items Using Batch Files
To backup the pinned taskbar shortcuts automatically, here is a Windows batch file that does it for you:
- Download backup_taskbar_pinned_items.zip, and extract the two .bat files to a folder.

- To backup the pinned Taskbar items and the corresponding registry settings, run the file backup_taskbar_pinned_items.bat.
This will create a folder named Taskbar-Pinned-Items-Backup on your Desktop containing all the Pinned shortcuts, along with a registry file export of the Taskband key.

- Open the REG file PinnedItems.reg using Notepad and delete the FavoritesResolve value and its corresponding data.

FavoritesResolve binary value and its data removed - Save the REG file and close Notepad
- Copy the folder Taskbar-Pinned-Items-Backup to the Desktop of your new user profile or another computer where you want to transfer them to.
- Then, on your new profile or on the new computer, run restore_taskbar_pinned_items.bat.
The batch file imports the registry settings and copies the shortcuts from the backup folder, and restarts the explorer shell.
Contents of the two batch files:
:: Backup Pinned Taskbar Shortcuts and Settings :: Ramesh Srinivasan - http://www.winhelponline.com :: backup_taskbar_pinned_items.bat md "%userprofile%\Desktop\Taskbar-Pinned-Items-Backup\TaskBar" copy /y "%AppData%\Microsoft\Internet Explorer\Quick Launch\User Pinned\TaskBar" "%userprofile%\Desktop\Taskbar-Pinned-Items-Backup\TaskBar" reg export "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband" "%userprofile%\Desktop\Taskbar-Pinned-Items-Backup\PinnedItems.reg" /y
:: Restore Pinned Taskbar Shortcuts Backed up earlier :: Ramesh Srinivasan - http://www.winhelponline.com :: restore_taskbar_pinned_items.bat @echo off IF NOT EXIST "%userprofile%\Desktop\Taskbar-Pinned-Items-Backup" GOTO EXITWAY taskkill /IM explorer.exe /f del "%APPDATA%\Microsoft\Internet Explorer\Quick Launch\User Pinned\TaskBar\*" /S /Q /F copy /y "%userprofile%\Desktop\Taskbar-Pinned-Items-Backup\TaskBar" "%AppData%\Microsoft\Internet Explorer\Quick Launch\User Pinned\TaskBar" reg delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband" /f reg import "%userprofile%\Desktop\Taskbar-Pinned-Items-Backup\PinnedItems.reg" start explorer.exe goto FINISH :EXITWAY ECHO "The Taskbar-Pinned-Items-Backup folder is not found. Please place the folder containing the Taskbar Pinned Items Backup in Desktop and try again." @PAUSE EXIT :FINISH @ECHO Taskbar Pinned Items are Restored successfully! @PAUSE EXIT
Backup and Restore Taskbar Pinned Items Manually in Windows 10
The Pinned items configuration for the Taskbar is stored under the “Taskband” key.
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband

The “Favorites” binary value references the (Pinned) shortcuts stored in the following directory:
%AppData%\Microsoft\Internet Explorer\Quick Launch\User Pinned\TaskBar

Backing up the pinned Taskbar items
- Start Regedit.exe and go to the following branch:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband
- Click File, Export and save the branch to a REG file. (e.g. tb-pinned-list.reg)
- Open the REG file using Notepad and delete the FavoritesResolve value and its corresponding data.

FavoritesResolve binary value and its data removed - Save the REG file to a folder where all users have access.
- Open the following folder:
%AppData%\Microsoft\Internet Explorer\Quick Launch\User Pinned
- Copy the folder “TaskBar” to the same location where you save the REG file.

Restoring pinned Taskbar shortcuts from backup
- Login to the user account where you want to restore the Pinned Taskbar shortcuts, and complete the steps given below.
- Terminate the Explorer Process. For more information, see exiting the explorer process.
- Press Ctrl + Shift + Esc to launch Task Manager.
- Click the File menu, New Task (Run…) and type:
REGEDIT.EXE "Path to the REG file"
For example:
REGEDIT.EXE "D:\Pinned Items Backup\tb-pinned-list.reg"
- Click Yes when asked for confirmation, and click OK.

- Click the File menu, New Task (Run…) and type explorer.exe and click OK.

- Copy the “TaskBar” folder to the following folder:
%AppData%\Microsoft\Internet Explorer\Quick Launch\User Pinned
- Choose to overwrite the existing TaskBar folder when prompted.
This restores your taskbar shortcuts. If shortcuts do not appear, logoff and login back.
Information in the article applies to Windows 7 through Windows 10. However, in Windows 10, the Store app shortcuts cannot be backed up and transferred to the new profile.
One small request: If you liked this post, please share this?
One "tiny" share from you would seriously help a lot with the growth of this blog. Some great suggestions:- Pin it!
- Share it to your favorite blog + Facebook, Reddit
- Tweet it!