You are reading the article How To Back Up And Restore Folder View Settings In Windows 11/10 updated in December 2023 on the website Moimoishop.com. We hope that the information we have shared is helpful to you. If you find the content interesting and meaningful, please share it with your friends and continue to follow and support us for the latest updates. Suggested January 2024 How To Back Up And Restore Folder View Settings In Windows 11/10
The Windows File Explorer is easy to navigate and comes with so many interesting accessibility features, one of which is the folder view settings. You can customize folders to represent the type of files they store.
For instance, if you have a folder where you saved only videos, you can set the folder to show thumbnails of the videos instead of a list or file details. You can also customize each folder to display medium, large, or extra-large icons.
After making these changes, you may want to back them up in order to restore the folder view settings if they get reset. This guide shows you how to back up and restore your folder view settings by using a batch file.
Back up and restore Folder View settings in Windows 11/10Follow the steps below to back up and restore your Folder View settings in Windows 11/10.
Create the backup-and-restore batch file.
Unblock the .bat file if blocked by Windows.
Run the .bat file to backup and restore your folder view settings.
Without further ado, we’ll now jump right into the detailed steps involved in carrying out the above operations.
1] Create the backup-and-restore batch fileEnter the following text in the new Notepad file:
@ECHO
OFF title
Backup
and
Restore
Folder
View
Settings
Tool
:
choice cls echo
.
echo OPTIONS
:
echo
.
echo
1.
Back
up your folder view settings
.
echo
2.
Restore
folder view settings
from
backup
.
echo
3.
Cancel
echo
.
echo
.
set
/
P c
=
Type
the option number you would like to
do
,
and
press
Enter
?
if
/
I
"%c%"
EQU
"1"
goto
:
verify1
if
/
I
"%c%"
EQU
"2"
goto
:
verify2
if
/
I
"%c%"
EQU
"3"
exit
goto
:
choice
:
verify1 IF EXIST
"%userprofile%DesktopFolder View Settings Backup"
goto
:
response1
goto
:
backup
:
response1 echo
.
echo
.
echo
You
already have a
"Folder View Settings Backup"
folder on your desktop
.
echo
Please
move it to another location
,
and
try
again
.
echo
.
pause
goto
:
choice
:
backup mkdir
"%userprofile%DesktopFolder View Settings Backup"
REG EXPORT HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerStreamsDefaults
"%userprofile%DesktopFolder View Settings BackupHKCU_Software_Microsoft_Windows_CurrentVersion_Explorer_Streams_Defaults.reg"
/
y REG EXPORT HKCUSoftwareMicrosoftWindowsShellBagMRU
"%userprofile%DesktopFolder View Settings BackupHKCU_Software_Microsoft_Windows_Shell_BagMRU.reg"
/
y REG EXPORT HKCUSoftwareMicrosoftWindowsShellBags
"%userprofile%DesktopFolder View Settings BackupHKCU_Software_Microsoft_Windows_Shell_Bags.reg"
/
y REG EXPORT HKCUSoftwareMicrosoftWindowsShellNoRoamBags
"%userprofile%DesktopFolder View Settings BackupHKCU_Software_Microsoft_Windows_ShellNoRoam_Bags.reg"
/
y REG EXPORT HKCUSoftwareMicrosoftWindowsShellNoRoamBagMRU
"%userprofile%DesktopFolder View Settings BackupHKCU_Software_Microsoft_Windows_ShellNoRoam_BagMRU.reg"
/
y REG EXPORT
"HKCUSoftwareClassesLocal SettingsSoftwareMicrosoftWindowsShellBagMRU"
"%userprofile%DesktopFolder View Settings BackupHKCU_Software_Classes_LocalSettings_Software_Microsoft_Windows_Shell_BagMRU.reg"
/
y REG EXPORT
"HKCUSoftwareClassesLocal SettingsSoftwareMicrosoftWindowsShellBags"
"%userprofile%DesktopFolder View Settings BackupHKCU_Software_Classes_LocalSettings_Software_Microsoft_Windows_Shell_Bags.reg"
/
y cls echo
.
echo
Backup
of
folder view settings successfully completed
.
echo
.
pause
exit
:
verify2 IF NOT EXIST
"%userprofile%DesktopFolder View Settings Backup"
goto
:
response
goto
:
restore
:
response echo
.
echo
.
echo
You
do
not
have a
"Folder View Settings Backup"
folder on your desktop
.
echo
Please
place the backup folder on your desktop
,
and
try
again
.
echo
.
pause
goto
:
choice
:
restore REG
Delete
"HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerStreamsDefaults"
/
F
Reg
Delete
"HKCUSoftwareMicrosoftWindowsShellBagMRU"
/
F
Reg
Delete
"HKCUSoftwareMicrosoftWindowsShellBags"
/
F
Reg
Delete
"HKCUSoftwareMicrosoftWindowsShellNoRoamBags"
/
F
Reg
Delete
"HKCUSoftwareMicrosoftWindowsShellNoRoamBagMRU"
/
F
Reg
Delete
"HKCUSoftwareClassesLocal SettingsSoftwareMicrosoftWindowsShellBagMRU"
/
F
Reg
Delete
"HKCUSoftwareClassesLocal SettingsSoftwareMicrosoftWindowsShellBags"
/
F REG IMPORT
"%userprofile%DesktopFolder View Settings BackupHKCU_Software_Microsoft_Windows_CurrentVersion_Explorer_Streams_Defaults.reg"
REG IMPORT
"%userprofile%DesktopFolder View Settings BackupHKCU_Software_Microsoft_Windows_Shell_BagMRU.reg"
REG IMPORT
"%userprofile%DesktopFolder View Settings BackupHKCU_Software_Microsoft_Windows_Shell_Bags.reg"
REG IMPORT
"%userprofile%DesktopFolder View Settings BackupHKCU_Software_Microsoft_Windows_ShellNoRoam_Bags.reg"
REG IMPORT
"%userprofile%DesktopFolder View Settings BackupHKCU_Software_Microsoft_Windows_ShellNoRoam_BagMRU.reg"
REG IMPORT
"%userprofile%DesktopFolder View Settings BackupHKCU_Software_Classes_LocalSettings_Software_Microsoft_Windows_Shell_BagMRU.reg"
REG IMPORT
"%userprofile%DesktopFolder View Settings BackupHKCU_Software_Classes_LocalSettings_Software_Microsoft_Windows_Shell_Bags.reg"
cls echo
.
echo
Backup
of
folder view settings successfully restored
.
echo
.
echo
Waiting
to restart explorer to apply
.
echo
Your
screen will flash
as
explorer
is
restarted
.
echo
.
echo
.
pause taskkill
/
f
/
im explorer
.
exe start explorer
.
exe
exit
You can copy and paste the above text into the note. Next, press CTRL + S and save the file on your desktop with the .bat extension. Do this by adding .bat at the end of the filename before hitting the Save button.
Files saved in the .bat extension are batch files and when done correctly, they’ll let you run commands on your Windows system. Learn more about batch files and explore these cool tricks.
2] Unblock the .bat fileSwitch to the General tab of the Properties window and find the Unblock checkbox towards the bottom of the window. Check this box and hit the OK button to unblock the batch file.
NOTE: If the Unblock checkbox is missing in your setup, it means that Windows didn’t block the file and you can move to the next step.
3] Run the .bat file
Back up your folder view settings.
Restore folder view settings from backup.
Cancel.
To back up your folder view settings, press 1 and hit the ENTER key. If you wish to restore your folder view settings, press 2 and press ENTER.
Alternatively, press 3 to cancel the operation.
Hope this helps.
You're reading How To Back Up And Restore Folder View Settings In Windows 11/10
How To Back Up And Restore Ios Devices On Mac Running Macos Catalina
Ever since I got a hang of Apple ecosystem, one of the important lessons that I have learned is “Never fail to back up your device.” Unexpected things tend to happen when you expect them the least. When you are dealing with a ton of sensitive information and personal data, it’s always better to stay on the safer side so that even if something untoward happens, all of your data remains untouched. That said, the process to back up iOS device on Mac running macOS Catalina has changed – courtesy the shutdown of iTunes. But don’t worry the substitute is doing an equally efficient job. Let me show you how to back up and restore the iPhone/iPad in macOS Catalina or later!
How to Back Up Your iPhone/iPad Using Finder on MacAfter shutting down iTunes, Apple has introduced three new apps which are Apple TV, Music, and Apple Podcasts, to let users handle movies, shows, music, and podcasts a bit conveniently. Wondering which app has donned the role of an iOS device manager? Well, it’s none other than the powerful Finder that has now assumed the role of iPhone and iPad manager. From letting you back up your data, restore the device from backup to sync the device, it does all the assigned tasks without any hiccups – at least so far. That all being said, let’s get started with the guide!
1. First off, connect your iPhone or iPad to your computer using a USB cable. Then, launch Finder on your Mac running macOS Catalina.
2. In the sidebar, select your iPhone that is under the Locations section.
3. Next, make sure the General tab at the top of the Finder window is selected, if it’s not already.
Note:
If you want to encrypt your iOS device backup to protect it from unauthorized access, make sure to check the box for “Encrypt local backup.” Then, you will need to create a password for your encrypted backup.
Make sure to store the password safely as you won’t be able to use the backup without it.
Once you have confirmed the password, your backup will begin immediately.
The encrypted backup includes your saved passwords, WiFi settings, health data, and website history.
That’s pretty much it! Now, allow your device to get backed up peacefully via Finder. The time it will take to finish backing up all the data entirely depends the amount of data you have stored on your iPhone. So, grab a hot coffee to wait patiently while the Finder is performing the task.
Check If Encrypted iPhone/iPad Backup Was Completed Successfully1. Make sure your iPhone or iPad is connected to your Mac. Then, launch Finder and select your device in the sidebar.
Restore iPhone and iPad from Backup Using Finder on Mac
1. To get going, connect your iOS device to your computer using a USB cable. After that, open Finder and select your iPhone in the sidebar.
Back Up and Restore iOS Devices on macOS Catalina
So, that’s the right way to back up and restore iOS and iPadOS devices using Finder on macOS Catalina. From what I can tell, the decision to eliminate iTunes seems to be a well-timed move as the erstwhile media library was struggling to survive against the cut-throat competition. Besides, Finder is doing a fairly good job of managing the devices. However, if you miss the famed software, check out these iTunes alternatives to fill up the void.
How To Restore The Classic Notepad In Windows 11
The new UWP Notepad app has replaced the old legacy Notepad in Windows 11. The redesigned Notepad for Windows 11 has some good features such as the tabbed interface to open multiple tabs in a single window and work with different text files, switch to dark mode, improved find and replace capability, etc. However, some users miss that classic and simple text editor to edit or view plain text files. Thankfully, there are some simple ways to restore the Classic Notepad in Windows 11, and this post includes all such ways.
How to restore the Classic Notepad in Windows 11Here are the native options to restore the Classic Notepad in Windows 11:
Open the Classic Notepad from its stored locations
Install the Classic Notepad using Optional features in the Settings app
Uninstall the new Notepad app.
Let’s check all these options in detail.
1] Open the Classic Notepad from its stored locationsThis is the simplest and one of the best options to restore the classic Notepad in Windows 11. Even though the new Notepad app has replaced the old Notepad application, its chúng tôi file is still there in the original location(s). So, you can access those locations and then open the classic Notepad. The paths for the classic Notepad EXE files are:
C:Windowsnotepad.exe
C:WindowsSystem32notepad.exe
Alternatively, you can also open the Run Command box (Win+R), type chúng tôi and hit Enter to open the classic Notepad in Windows 11. But this will only work if the EXE files for the old Notepad are present in your system.
Read: How to change Notepad Font and Size in Windows 11
2] Install the Classic Notepad using Optional features in the Settings appIf the above option doesn’t work and chúng tôi files are missing from your Windows 11 system, then you can install Classic Notepad using the Optional features of Windows 11. For this, use the following steps:
Press the Win+I hotkey to open the Settings app of Windows 11
Select the Apps category
Access the Optional features page
A box will appear. There, type notepad in the search field
Select the checkbox for Notepad (system)
Press the Next button
Press the Install button.
Wait until the installation process is finished. After that, you might need to restart your PC. Once done, the chúng tôi file for the classic Notepad will be stored in the Windows folder and the System32 folder in the C drive. From there, you can execute the executable file and the old Notepad application will open.
3] Uninstall the new Notepad appIf you don’t like the new Notepad app and want to keep using the classic Notepad only in Windows 11, then simply uninstall the new Notepad app. For this:
Open the Settings app using the Win+I shortcut
Access the Installed apps section
Select the Uninstall option
Confirm your action by pressing the Uninstall button in the given pop-up.
I hope this helps.
Where is Notepad EXE in Windows 11?The chúng tôi file for the Notepad app is stored in the following location on Windows 11:
C:Program FilesWindowsAppsMicrosoft.WindowsNotepad_11.2304.26.0_x64__8wekyb3d8bbweNotepadFirst, you must show hidden files and folders on your Windows 11 system because the WindowsApps folder remains hidden by default. Also, the version number for the Notepad app folder could be different depending on the installed version on your system.
Why is Notepad not showing up in Windows 11?If you have installed classic Notepad but Notepad is not opening or showing on your Windows 11 system, then you can run its EXE file from the main folder (System32 or Windows folder). If that doesn’t help, first uninstall and then re-install Notepad using the Settings app of Windows 11. You may also need to troubleshoot in the Clean Boot state to find the conflicting applications and then remove/disable such items.
Read next: Best free Note taking apps for Windows PC.
Compressed (Zipped) Folder Is Missing From Send To Menu In Windows 11/10
If the Send to menu is visible, but some particular item such as Compressed (zipped) folder is missing from the Send to menu in Windows 11/10, follow this post to fix the issue. If the Send to menu is not visible or working, you can quickly fix the issue. However, you need to do a bit more to get back missing items in the Send to menu.
There are multiple reasons why the Compressed (zipped) folder option may go missing. If you connected a Bluetooth device, but it got corrupted due to some reasons, there is a small chance that your Compressed (zipped) folder option might not be invisible to you. Malware can also cause it to go missing. Another reason is the .ZFSendToTarget file association which is required for it to appear.
Compressed (zipped) folder is missing from Send to menuIf Compressed (zipped) folder is missing from Windows 10 Send to menu, one of these suggestions is sure to fix the problem for you:
Unhide Compressed (zipped) folder
Copy from the Default user account
Delete 0 KB Bluetooth shortcut
Fix .ZFSendToTarget file association.
Let us see the steps in detail.
Send To Compressed Folder missing 1] Unhide Compressed (zipped) folderIf the Compressed (zipped) folder item is hidden, you won’t get it in the Send to menu. You need to unhide it manually. For that, you need to follow these steps.
Unhide hidden files and folders and open the Send to folder in Explorer. You can navigate to this path:
C:Usersyour_usernameAppDataRoamingMicrosoftWindowsSendTo
Now, check if the Compressed (zipped) folder option is visible in the Send to menu or not.
2] Copy from the Default user accountIf you have opened the SendTo folder, but the Compressed (zipped) folder item is not visible in here, you should copy it from some other place. You can do this from the Default user account. For that, navigate to this path:
C:UsersDefaultAppDataRoamingMicrosoftWindowsSendToCopy the Compressed (zipped) folder option, and paste it in this following folder:
C:Usersyour_usernameAppDataRoamingMicrosoftWindowsSendToNow, check if you can see the Compressed (zipped) folder option in the Send to menu or not.
3] Delete 0 KB Bluetooth shortcutIf your Bluetooth connection got corrupted earlier, there is a chance of facing this issue on your computer. In that case, you need to remove the Bluetooth shortcut, which is 0 KB in size. This is nothing but a previously connected Bluetooth device shortcut. Although this is very rare, the shortcut can consume the space of Compressed (zipped) folder in the Send to menu, and create the conflict accordingly. Therefore, if you find an item named Bluetooth with 0 KB in size, you need to remove it. While doing this, you should not delete any item that has a minimum size of 1 KB and more.
4] Fix .ZFSendToTarget file association.ZFSendToTarget helps your system to deal with various items in the Send to menu. However, if it is corrupted, you may face issues. The fastest way to recognise the file association error is by checking the Compressed (zipped) folder icon in the SendTo folder. By default, it shows a zip file icon, but it can display a generic icon due to corruption. In that case, you need to open the Command Prompt with administrator privilege, and execute this command;
assoc.zfsendtotarget=CLSID{888DCA60-FC0A-11CF-8F0F-00C04FD7D062}After that, check if you can find the Compressed (zipped) folder option in the Send to menu or not.
Hope this post helps you.
How To Minimize And Maximize Windows In Windows 11/10
If you are a Windows user, you definitely know how to switch among the opened apps and how to minimize and maximize the opened windows. Almost all of us use the maximize and minimize buttons on the top right side of the apps for this purpose. Do you know there are multiple other ways in Windows 11/10 to maximize and minimize windows? In this article, we will see how to maximize and minimize windows in Windows 11/10.
If you have ever noticed that apart from maximizing and minimizing a window, there is one more option available in Windows 11/10, i.e., Restore. Before we begin our discussion on the different ways to maximize and minimize windows in WIndows 11/10, let’s see the difference between these three terms.
Maximize: When we say maximize, we refer to the app that has covered the entire screen of a user’s computer irrespective of his screen size.
Restore: Restoring a window neither maximizes it to the full screen nor minimizes it to the Taskbar. When you press the Restore button, the size of the selected window will change. You can consider it as a state between maximize and minimize. When you restore an app, both maximize and minimize options become available.
How to Minimize and Maximize windows in Windows 11/10You can maximize and minimize active, inactive or all open windows in WIndows 11/10 by using the following methods:
By using the maximize and minimize buttons
By using the Title Bar menu
From the Taskbar
By using the keyboard shortcuts
Maximize and Minimize all the opened windows
Let’s see all these methods in detail.
1] Maximize and Minimize windows in Windows 11/10 by using the maximize and minimize buttons 3] Maximize and Minimize an opened window by using the Title Bar menu 4] Maximize and Minimize windows from the TaskbarThe following steps will help you maximize and minimize windows from the Taskbar.
Hover your mouse cursor over an app icon.
Select the desired option.
5] Maximize and Minimize the apps by using Windows 11/10 keyboard shortcutsYou can maximize and minimize the opened windows using keyboard shortcuts. Let’s see what these keyboard shortcuts are and how to use them.
Win + Up Arrow Key: This key combination maximizes the window.
Win + Down Arrow Key: When you use this keyboard shortcut, the opened window is first, restored, then minimized.
Win + Right Arrow Key: Maximizes the window to the right of the screen.
Win + Left Arrow Key: Maximizes the window to the left of the screen.
Win + Home: This key combination minimizes all the windows except the active desktop window.
Win + Number Keys: This keyboard shortcut is used to open the apps pinned on the Taskbar. For example, if you want to open the 4th app pinned on the Taskbar, you have to press the Win + 4 keys and so on. This keyboard shortcut works only for up to 9 apps because 9 is the largest single-digit number.
You can also use this Win + Number Keys shortcut to maximize and minimize the windows. For example, if you have opened an app that is pinned on the 6th number on the Taskbar, you have to press the Win + 6 keys to minimize it. Press the Win + 6 keys again to maximize it.
In the above screenshot, I have numbered the apps pinned on the Taskbar from 1 to 7. If all these apps are opened, the keyboard shortcuts to maximize and minimize the windows are as follows:
Win + 1: File Explorer.
Win + 2: Microsoft Edge.
Win + 3: Mozilla Firefox.
Win + 4: Paint dot net.
Win + 5: Notepad++.
Win + 6: Bluetooth.
Win + 7: Microsoft Store.
6] Maximize and Minimize all the open windowsRead: How to Select, Copy and Paste, Delete, Rename Multiple Files and Folders in Windows 11/10
How do I maximize a window in Windows 11?We have described all the methods to maximize and minimize windows in Windows 11/10 in this article.
Read: Windows 11 File Explorer Tips and Tricks
What are the shortcut keys for maximizing and minimizing the window?You can use Win + Arrow Keys to maximize and minimize the windows. If you press the Win + Up Arrow Keys, your window will be maximized. If you press the Win + Down Arrow Keys, your window will be minimized. Apart from that, you can also use the Win + Number Keys for the same. We have explained all the keyboard shortcuts to maximize and minimize windows on Windows 11/10.
Hope this helps.
Read next: Managing Files and Folders in Windows.
How To Change Username And User Profile Folder Name In Windows
The C:Usersusername folder contains the user profile of your account. When you create an account, your system makes a folder with your username on the C:Users directory.
Even if you change your account name, the profile name remains unchanged. Directly changing this name is also impossible if you don’t have admin privileges.
We have created this guide to show you how to safely change the C:Usersusername folder in Windows.
Here is the step-by-step process for changing your C:Usersusername folder in Windows:
You can’t change your user profile name from the same account. You also need administrator privileges. So, log out of the account whose user profile you wish to change and sign in using another admin account.
If you don’t have any other accounts, you need to create a new admin or enable the hidden Administrator.
For the latter process,
Open Run command box (Win + R).
Enter lusrmgr.msc. It will direct you to the Local Users and Groups Manager.
In the General tab, uncheck the Account is disabled option.
You can also run Command Prompt as administrator and enter net user administrator /active:yes if you prefer using the CLI.
Then, log out of your current account and sign in using the Administrator account.
Changing the user profile name involves more than just altering the folder name. Your system keeps track of the user profiles and their paths in the registry. So, first, you need to change the path through the Registry Editor.
Note: Incorrect modification of the registry causes many system problems. Therefore,
Incorrect modification of the registry causes many system problems. Therefore, back up your registry before executing this process.
Here’s how you can change the User Profile path:
Open the Run dialog box and enter regedit.
Navigate to: ComputerHKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionProfileList
Alternately, you can enter wmic useraccount get name,SID on the Command Prompt to list all user profiles along with their corresponding SIDs.
Go to the SID of your profile.
Close the Registry Editor and Restart your PC.
Now you can finally rename the C:Usersusername folder. Follow the instructions below to do so:
Sign in with your account (the one where you want to change the profile name).
Navigate to the C:Users directory.
If you can’t rename the folder, boot into safe mode and try again.
Restart your PC and log in to your account.
There are some loose ends you need to tie up to complete the process. Many registry entries and settings still use the previous profile path.
Your application will run just fine. However, since you have changed the profile path and directory, the previous configurations and saved objects may not be accessible.
You must replace the previous path with the current one in all instances to avoid this issue. You can do so by manually changing the registry settings or creating a symbolic link.
A symbolic link creates a reference to a file or folder in another location. You can make it so that opening a folder in one location opens up another. This method creates a logical replacement for the profile path. To create a symbolic link,
Launch the Run command.
Type cmd and press Ctrl + Shift + Enter to load the elevated Command Prompt.
Enter the command: mklink /d “full path of old user profile” “full path of new user profile” while replacing both of the full paths.
Note: Not all programs follow a symbolic link and thus, result in application crashes. Completely uninstall and reinstall them to fix this issue.
Creating a symbolic link does not actually replace the profile paths. If you don’t want your old username to pop up in any instance, you can try manually changing all the relevant registry entries. Here’s how you can change the entries:
Open the Registry Editor.
Make sure to tick all options.
Press F3 to find the next instance of the username.
The next step is to rebuild search entries to refer to the new user profile. To do so,
Launch the Run command.
Enter control chúng tôi It will direct you to the Indexing Options.
Hit Ok to confirm.
Restart your PC and check if you can use your system normally.
The hidden Administrator account is very useful in debugging many system issues. However, it is disabled by default to prevent any unauthorized changes to your system. Make sure to disable it after changing your user profile name.
If you changed the user profile name, you might also want to change your account name to maintain consistency. There are many ways to modify your User Account name.
One of the easier methods is to use the Local Users and Groups Manager. To use this utility to change your account name,
Enter lusrmgr.msc in the Run command box.
Go inside Users.
Type the new account name and press Enter.
Restart your PC.
Update the detailed information about How To Back Up And Restore Folder View Settings In Windows 11/10 on the Moimoishop.com website. We hope the article's content will meet your needs, and we will regularly update the information to provide you with the fastest and most accurate information. Have a great day!