How to Backup and Restore Pinned Taskbar Shortcuts in Windows 10

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:

  1. Download backup_taskbar_pinned_items.zip, and extract the two .bat files to a folder.
  2. 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.

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

    taskband registry key export
    FavoritesResolve binary value and its data removed
  4. Save the REG file and close Notepad
  5. 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.
  6. 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

taskband registry key



The “Favorites” binary value references the (Pinned) shortcuts stored in the following directory:

%AppData%\Microsoft\Internet Explorer\Quick Launch\User Pinned\TaskBar

taskbar shortcuts folder windows

Backing up the pinned Taskbar items

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

    taskband registry key export
    FavoritesResolve binary value and its data removed
  4. Save the REG file to a folder where all users have access.
  5. Open the following folder:
    %AppData%\Microsoft\Internet Explorer\Quick Launch\User Pinned
  6. Copy the folder “TaskBar” to the same location where you save the REG file.taskbar shortcuts folder windows

Restoring pinned Taskbar shortcuts from backup

  1. Login to the user account where you want to restore the Pinned Taskbar shortcuts, and complete the steps given below.
  2. Terminate the Explorer Process. For more information, see exiting the explorer process.
  3. Press Ctrl + Shift + Esc to launch Task Manager.
  4. 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"
  5. Click Yes when asked for confirmation, and click OK.
    merge taskband registry file
  6. Click the File menu, New Task (Run…) and type explorer.exe and click OK.
    task manager new explorer.exe process
  7. Copy the “TaskBar” folder to the following folder:
    %AppData%\Microsoft\Internet Explorer\Quick Launch\User Pinned
  8. 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!
So thank you so much for your support. It won't take more than 10 seconds of your time.

Ramesh Srinivasan is passionate about Microsoft technologies and he has been a ten-time recipient of the Microsoft MVP award in Windows Desktop Experience (Windows Shell), from 2003 to 2012. Ramesh founded Winhelponline.com in 2005.

Leave a Comment