General Move or Restore Default Location of Videos Folder in Windows 11


  • Staff
Videos_folder_banner.png

This tutorial will show you how to move or restore the default location of the Videos folder for your account in Windows 10 and Windows 11.

The Videos folder (shell:My Video) is a component of the user profile that is used as a unified location for storing personal data. By default, the Videos folder is a shell folder in the user's profile (%UserProfile%) that is used as a default storage location for saved videos.

If you like, you can move the Videos folder and its content to a location you want it at instead.

If the current Videos folder path is incorrect or is no longer available, you can use the Restore Default option to restore the default path.


Contents

  • Option One: Move Location of Videos Folder in Properties
  • Option Two: Restore Default Location of Videos Folder in Properties
  • Option Three: Restore Default Location of Videos Folder using BAT file




Option One

Move Location of Videos Folder in Properties


1 Open File Explorer (Win+E).

2 Navigate to the location (ex: "D") you want to move your Videos folder to, and create a new folder named Videos at this location. (see screenshot below)

Move_Videos_folder-1.png

3 Right click on the Videos folder in the navigation pane of File Explorer, and click/tap on Properties. (see screenshot below)

If you don't see the Videos folder in the navigation pane, then type shell:My Video into the address bar of File Explorer, and press Enter to open the Videos folder no matter where it may be located.

You can then right click or press and hold on an empty area in the opened Videos folder, and click/tap on Properties.


Move_Videos_folder-2.png

4 Click/tap on the Location tab, and click/tap on the Move button. (see screenshot below)

Move_Videos_folder-3.png

5 Navigate to and select the new Videos folder from step 2, and click/tap on Select Folder. (see screenshot below)

Move_Videos_folder-4.png

6 Click/tap on OK. (see screenshot below)

Move_Videos_folder-5.png

7 Click/tap on Yes to move all the files from the old location to the new location. (see screenshot below)

Move_Videos_folder-6.png




Option Two

Restore Default Location of Videos Folder in Properties


1 Open File Explorer (Win+E).

2 Right click on the Videos folder in the navigation pane of File Explorer, and click/tap on Properties. (see screenshot below)

If you don't see the Videos folder in the navigation pane, then type shell:My Video into the address bar of File Explorer, and press Enter to open the Videos folder no matter where it may be located.

You can then right click or press and hold on an empty area in the opened Videos folder, and click/tap on Properties.


Move_Videos_folder-2.png

3 Click/tap on the Location tab, and click/tap on the Restore Default button. (see screenshot below)

Restore_Videos_folder-2.png

4 Click/tap on OK. (see screenshot below)

Restore_Videos_folder-3.png

5 If prompted to create a Videos folder at the default location, click/tap on Yes. (see screenshot below)

Restore_Videos_folder-4.png

6 Click/tap on Yes to move all the files from the old location to the default location. (see screenshot below)

Restore_Videos_folder-5.png




Option Three

Restore Default Location of Videos Folder using BAT file


This option can be very useful if Option Two is not available.

This option will not move the contents of the Videos folder from the old location to the default location. You will need to manually move the contents after restoring the default location if wanted.


1 Click/tap on the download button below to download the Restore_default_location_of_Videos_folder.bat file.


(Contents of BAT file for reference)
Code:
@echo off

taskkill /f /im explorer.exe

timeout /t 2 /nobreak >nul

if not exist "%UserProfile%\Videos" mkdir "%UserProfile%\Videos"

reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v "My Video" /t REG_SZ /d "C:\Users\%USERNAME%\Videos" /f

reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /v "{35286A68-3C57-41A1-BBB1-0EAE73D76C95}" /t REG_EXPAND_SZ /d %%USERPROFILE%%"\Videos" /f

reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /v "My Video" /t REG_EXPAND_SZ /d %%USERPROFILE%%"\Videos" /f

attrib +r -s -h "%USERPROFILE%\Videos" /S /D

timeout /t 1 /nobreak >nul

start explorer.exe

2 Save the BAT file to your desktop.

3 Unblock and run the BAT file.

4 You will now see a command prompt open and close to kill the explorer process, run the commands to restore the default location and attributes of the Videos folder, and restart the explorer process.

5 You can now delete the BAT file if you like.


That's it,
Shawn Brink


 

Attachments

  • Videos_folder.png
    Videos_folder.png
    6.4 KB · Views: 93
  • Restore_default_location_of_Videos_folder.bat
    892 bytes · Views: 220
Last edited:
Back
Top Bottom