Logo

Show more/less details when copying/moving

When we initiate the copy or move files command we get a dialog that shows us the progress of the current operation, under that bar we can click on the little arrow to expand the bar into so-called more details view where we get more information like which file is being copied, more detailed graph, etc.

Windows will remember the last option we had and next time when we start the same process it will open the last view.

But what if we want to only have one view always open as default, even if we change it? Let's say that we always want to have a detailed view opened always as our default even if we switch to a minimal one? Well with some tweaks in the registry of Windows we can.

Note that this guide will require changing things in the registry of Windows itself, it is always smart and recommended to make a safe backup of your registry, just in case.

FOR ALWAYS SHOW MORE DETAILS FOLLOW THIS GUIDE:

open notepad and paste the following code inside:

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\OperationStatusManager]

"EnthusiastMode"=dword:00000001

Go to File > Save as... and once the file save dialog opens choose at the bottom all files under file type. Save the file with extension .REG naming it whatever you want.

Right-click on file and choose Merge, confirm with YES and you are done, now each time when you start copy or move operation details view will be open.

FOR ALWAYS SHOW FEWER DETAILS FOLLOW THIS GUIDE:

open notepad and paste the following code inside:

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\OperationStatusManager]

"EnthusiastMode"=dword:00000000

Go to File > Save as... and once the file save dialog opens choose at the bottom all files under file type. Save the file with extension .REG naming it whatever you want.

Right-click on file and choose Merge, confirm with YES and you are done, now each time when you start copy or move operation minimal details view will be open.

Do You Need Help with Your Device?

Our Team of Experts May Help
Troubleshoot.Tech Experts are There for You!
Replace damaged files
Restore performance
Free disk space
Remove Malware
Protects WEB browser
Remove Viruses
Stop PC freezing
GET HELP
Troubleshoot.Tech experts work with all versions of Microsoft Windows including Windows 11, with Android, Mac, and more.

Share this article:

You might also like

Perform System Restore when Windows won’t boot
System restore is usually the go-to tool when something goes bad in Windows, we fire it up and roll back Windows in the state when everything was working fine. But what if Windows does not want to boot? Can we use system restore in that case? The answer to that question would be yes, yes we can.
  1. Boot interrupt Windows 10 by starting your PC and as soon as you see the Windows logo; press and hold the power button to force a shutdown.
  2. Repeat this 2-4 times and Windows will open up the Advanced Startup Options menu for you.
  3. At the Advanced Startup Options screen, select Advanced Options.
  4. Select Troubleshoot.
  5. Under the Advanced options screen, select System Restore.
or if you prefer, use Windows USB installation.
  1. Boot the faulty PC using the Windows 10 installation media.
  2. The Windows Setup dialog box will appear.
  3. Set the Time and currency format, Keyboard or input method, and the language to install.
  4. Click Next.
  5. Click on Repair your computer from the lower-left corner.
  6. From the Choose an option screen, click on Troubleshoot.
  7. Click Advanced Options in the Troubleshoot screen.
  8. In the Advanced Options screen, click System Restore.
  9. Windows will take some time to prepare System Restore. It may even restart your computer or device.
  10. When System Restore is ready, you will be prompted to choose a user account to continue.
  11. Select an account that is set as administrator on your Windows 10 computer or device.
  12. At the next screen, change the keyboard layout if you want and then input the password for that account.
  13. Click the Continue button.
Read More
Edge and Store apps are not connecting
If your Microsoft Edge browser and Windows Store apps are now unable to connect to the internet after you have just installed the newly released Windows 10 v1809 October 2018 update, then this post might help. As you know, Microsoft has made a change recently and because of this, some users are getting the “Hmm, we can’t reach this page” error when they try to open Microsoft Edge as well as other pre-installed apps like News, Mail, and so on. Aside from that, you also won’t be able to connect the Microsoft Store apps to the internet. What’s strange is that you can connect to the internet using other programs like Google Chrome, Internet Explorer, and many more. Apart from checking your internet connection, there are other things you can to resolve the problem. If your Windows Store apps are not able to connect to the internet and you’re only getting the Error 80072EFD, then you might have to enable IPv6 as the new Windows 10 v1809 requires IPv6 to be enabled so that you can use the UWP apps. And so you have to enable IPv6 in the network card along with IPv4. To do so, follow the steps below. Step 1: Tap the Win + R keys to open the Run dialog box. Step 2: After that, type “ncpa.cpl” and hit Enter or click OK to open Network Connections. From there, you will see your currently connected network profile. Step 3: Right-click on your network profile and select Properties and then go to the Networking tab and look for the “Internet Protocol Version 6 (TCP/IPv6)” and select its corresponding checkbox. Step 4: Now click the OK button to save the changes made and restart your computer.
Read More
Fix Unable to terminate the process Error in Windows 10
There are times when you may find it hard to kill a particular process in the Windows Task Manager and every time you try to do so, you will only get an error message saying, “Unable to terminate the process, The operation could not be completed, Access is denied”. If you are one of the users who is constantly getting this error, read on as this post will provide you with a couple of options you can try to resolve the problem. Refer to the given instructions below if you are unable to terminate a process in the Task Manager but before you proceed you need to restart your PC and then try killing the process again, if you’re still not able to do it, you need to follow the options laid out below.

Option 1 – Try using Taskkill

  • Open the Command Prompt as admin from the WinX Menu.
  • After opening Command Prompt, type in the following command and tap Enter to execute it:
taskkill /IM "processname" /T /F processname – it is the name of the process which you can see on the Details tab of the Windows Task Manager. /IM – it is the one that specifies the image name of the process, which follows, that is to be terminated. /T – it is the one that kills not just the main process but also the child process. /F – it is the one that terminates the process forcefully.

Option 2 – Try using the WMIC

  • Open Command Prompt as admin from the WinX Menu.
  • From the Command Prompt window that opens, type in the following command and hit Enter to execute it:
wmic process where name='processname.exe' delete
Note: In the given command, you need to replace “processname.exe” with the name of the particular process you want to terminate which is found in the Details tab of the Windows Task Manager.

Option 3 – Try using PowerShell

  • The first thing you have to do is open an elevated PowerShell prompt.
  • From there, type in the following command and hit Enter to execute it:
kill -id pid
Note: In the given command above, “pid” is the Process ID number of the process you want to terminate. And for you to identify this number, you need to open the Details tab of the Windows Task Manager once again and take note of the number against the process you want to get rid of. Alternatively, you can also run the following command in the PowerShell prompt that you’ve pulled up to get the process ID number:
Get-Process
For example, “5364” is the process ID number for the DimScreen.exe process which is the process you want to terminate. In order for you to kill this process, you need to type in this command:
kill -id 5364
Read More
Fix BUGCODE_USB_DRIVER Error in Windows
This post will guide you in fixing yet another annoying Blue Screen of Death error, “BUGCODE_USB_DRIVER”. This particular BSOD error occurs due to some issue with usbhub.sys, winusb.sys, or usbport.sys system driver file. When you encounter this kind of Stop error on your Windows 10 PC, it indicates that an error has occurred in the Universal Serial Bus or USB driver. The USB driver is issued by Microsoft themselves and it comes along with the Windows 10 system which is why it is difficult to download its latest version using a web browser. Thus, you need to take some basic steps to resolve the problem. Carefully follow the given fixes below to fix the BUGCODE_USB_DRIVER Blue Screen error and before you proceed, you need to create a System Restore Point, this way you have some backup in case something goes out of hand.

Option 1 – Update the USB Controller Drivers

  • First, click the Start button and type “device manager”.
  • Then click on the “Device Manager” from the search results to open it.
  • From there, look for the “Universal Serial Bus controllers” option and then right-click on each one of the USB drivers and select the Update Driver from the menu.
  • Restart your PC and then click the “Search automatically for updated driver software” option.
You also have the option to update the motherboard and the USB driver from the manufacturer’s official website.

Option 2 – Check for any available Windows Updates

Another you can try is to check if there are any Windows Updates available to make sure that your Windows 10 PC has all the latest updates installed. All you have to do is go to Settings > Update &security. From there, just click on the Check for updates button.

Option 3 – Uninstall conflicting programs and services

There are certain programs like VMWare, Virtual Box, Hyper-V Virtualization services that might be in conflict with the USB port drivers on the parent operating system. Thus, you can try uninstalling the aforementioned programs and other similar ones to see if it fixes the BSOD error.
  • In the search box, type in “control” and then click on Control Panel (desktop app) among the search results.
  • After that, select Programs and Features from the list which will give you a list of all the programs installed on your computer.
  • From there, look for the concerned program and select it and then uninstall it.
Note: If you have downloaded the app from the Windows Store, you can simply right-click on it from the application list and then uninstall it. If uninstalling the programs mentioned above didn’t help, you might want to try putting your PC in a Clean Boot State to help you find the faulty program.
  • Log onto your PC as an administrator.
  • Type in MSConfig in the Start Search to open the System Configuration utility.
  • From there, go to the General tab and click “Selective startup”.
  • Clear the “Load Startup items” check box and make sure that the “Load System Services” and “Use Original boot configuration” options are checked.
  • Next, click the Services tab and select the “Hide All Microsoft Services” check box.
  • Click Disable all.
  • Click on Apply/OK and restart your PC. (This will put your PC into a Clean Boot State. And configure Windows to use the usual startup, just simply undo the changes.)

Option 4 – Modify the Power Settings

  • In the Cortana Search box, type “power options” and then select Power Options from the search results.
  • After opening Power Options, click on Change plan settings for your selected power plan.
  • Next, click on Change advanced power settings.
  • Then look for USB Settings and click on it to expand it.
  • Now expand the USB selective suspend setting and then disable it.
  • After that, click on the Apply and then OK buttons to save the changes made.

Option 5 – Check for any hard disk errors

  • On your desktop, right-click on the “This PC” or computer icon and then select Manage to open the Disk Management. Here you get to check your drive’s health.
  • Next, click on Disk Management on the left side panel.
  • From there, check the state of your drives. If it shows that all your partitions are healthy then it means all is good and that the problem may have something to do with some physical issues with your hard drive.
You might also want to run the CHKDSK utility to help you fix any issues with your hard disk. If your hard drive has issues with integrity, the update will really fail as the system will think that it’s not healthy and that’s where the CHKDSK utility comes in. The CHKDSK utility repairs hard drive errors that might be causing the problem.
  • Open Command Prompt with admin privileges.
  • After opening Command Prompt, execute the following command and hit Enter:
chkdsk /f /r
  • Wait for the process to be completed and then restart your computer.
Read More
How to Fix Chrome error 1603 & 0x00000643
If you encounter errors 1603 and 0x00000643 on your Windows 10 computer while trying to install or update your Google Chrome browser. Although most errors can be fixed by some simple troubleshooting steps, that is not the case for these two errors since they have pretty specific solutions. To resolve errors 1603 and 0x00000643 on your Chrome browser, here are some solutions you need to check out.

Option 1 – Try to run Microsoft Install and Uninstall Troubleshooter

Running the Microsoft Install and Uninstall Troubleshooter could help you fix errors 1603 and 0x00000643 in Chrome as well as the following issue in your Windows 10 computer:
  • Corrupted registry keys on 64-bit operating systems.
  • Corrupted registry keys that control the updated data.
  • Problems that:
    • Prevent new programs from being installed.
    • Prevent new programs from being installed.
    • Problems that block you from uninstalling a program through Add or Remove Programs (or Programs and Features) in Control Panel.
To use the Microsoft Install and Uninstall Troubleshooter, refer to the given steps below.
  • First, right-click on the downloaded MicrosoftProgram_Install_and_Uninstall.meta.diagcab file and run it with administrative privileges.
  • Next, it will offer you two scenarios to troubleshoot namely, “Installing” or “Uninstalling” and you have to select Installing to resolve the current errors.
  • After that, it will show you a list of available programs on your computer. From there, select Google Update Helper and then click Next.
  • It will then start to troubleshoot the problem and will automatically apply the fixes for you. It will offer you to uninstall Chrome if it turns out that it’s the root cause of the problem.
  • After that, you need to download Google Chrome again and then reinstall it.

Option 2 – Try to clean reinstall Chrome

There are instances when programs leave files behind after you’ve uninstalled them and the same thing can happen to Chrome so before you reinstall Chrome, you have to make sure that you have deleted the User Data folder. To do so, refer to the following steps:
  • Hit the Win + R keys to open the Run dialog box.
  • Next, type “%LOCALAPPDATA%GoogleChromeUser Data” in the field and hit Enter to open the User Data folder.
  • From there, rename the default folder and name it something else, e.g. “Default.old”.
  • After that, install Google Chrome again and check if the issue is now fixed.

Option 3 – Try running the Chrome Cleanup tool

You might want to run Google Chrome’s built-in Malware Scanner & Cleanup tool as it could also help in getting rid of any unwanted ads, pop-ups, and even malware, as well as unusual startup pages, toolbars, and anything else that might overtake the network and could affect the performance of the browser.

Option 4 – Try to run the Network Troubleshooter

  • Open the Search bar on your computer and type in “troubleshoot” to open the Troubleshoot settings.
  • Next, scroll down and select the “Network Adapter” option from the right pane.
  • Then click on the Run Troubleshooter” button.
  • After that, your computer will check for any possible errors and will pinpoint the root cause of the problem if possible.

Option 5 – Reset Chrome

Resetting Chrome can also help you fix the error. This means that you will be restoring its default settings, disabling all the extensions, add-ons, and themes. Aside from that, the content settings will be reset as well and the cookies, cache, and site data will also be deleted. To reset Chrome, here’s what you have to do:
  • Open Google Chrome, then tap the Alt + F keys.
  • After that, click on Settings.
  • Next, scroll down until you see the Advanced option, once you see it, click on it.
  • After clicking the Advanced option, go to the “Restore and clean up option and click on the “Restore settings to their original defaults” option to reset Google Chrome.
  • Now restart Google Chrome.
Read More
Setting default applications in Windows 11
Setting default applications in Windows 11Same as in previous Windows versions, Windows 11 will also use certain applications as default ones for opening certain file types and file extensions. And yes, same as in previous versions it will come preconfigured for certain file types and associated applications like for example photos for pictures. Of course, users usually have their own favorite applications for certain file types and much more prefer to open them inside the application of their choice instead of the default one. We can change the default application like in previous Windows versions but this time there are two ways and overall more control of this process. Windows 11 has settings for choosing default file type applications and default file extension applications giving you more control of this process.

The opening setting for apps

Whatever you wish to change default application or default extension application you will need to open settings for default application. Follow steps to quickly go into it.
  1. Press ⊞ WINDOWS + I to open settings
  2. Select Apps on left
  3. On the right part select Default Apps
Now you are in settings for choosing default applications

Choosing default application by file type extension

This is considering by Microsoft as a typical way to set default applications inside Windows 11. Once you are inside the settings app there is a box labeled Enter a file type or link type. Inside the search box, type in file extension that you wish to associate the application with like .JPG, .TXT, or other. If the file extension is not associated with any application you will be presented with a Choose a Default button, if however, the file extension is already associated with the app, you will need to click on the app box itself. In any case, a pop-up will appear and ask How do you want to open YOUR FILE EXTENSION files from now on? Choose Application from the list of presented ones and click on OK.

Choosing default file type

Another method is to select the default application by file type selecting application for it. In the settings screen, under the search box, you will have a list of installed applications. Choose the application that you would like to associate a file type with and click on it. On the next details screen scroll down and select the file type that you want to associate with the selected application and click on OK.

Other/third method

There is also the third method for choosing the default application for file type but it includes some surfing on your hard drive and it can be more time-consuming for first-time settings. But it is fairly quick when you need to only use it once on some new file type (for example you have a new application installed and want to switch just one file type extension to that application). Locate the file that you want to associate with the application and right-click on it. Select Open With from the menu and then Choose Another App. Pop up will appear, select the application that you would like to use, and check the box beside Always use this app to open CHOOSEN EXTENSION files followed by clicking on the OK button.
Read More
How to clear cache inside Windows 11
Cache files are temporary files that have been created by various applications and services when used.  As temporary files, they are safe to be removed and deleted from the system since the application or service will create new ones when needed but sadly will not remove old ones, this task is left to OS itself. windows 11 cacheAutomatic Windows cleanups can mostly take care of these things but for top-notch performance clearing cache manually is a far better option. We will here explore various cache temporary files, where they are, and how to clean them. Sit back and let’s do some cleaning!

Clear cache using Disk Cleanup

  1. Open Start menu and search Disk Cleanup
  2. Click on it in search results
  3. Click on the drives drop-down menu and select the drive where is Windows 11 installed
  4. In the Files to Delete section enable all boxes and click on OK
  5. Click on delete Files to confirm

Clear Microsoft store cache

  1. Press ⊞ WINDOWS + R to open the run dialog
  2. Type in WSReset.exe and press ENTER
  3. Black blank windows will appear, wait for the window to close itself and you are done

Clearing location cache

  1. Press ⊞ WINDOWS + I to open location history
  2. Select Privacy & Security
  3. In the App Permissions section click on Location
  4. On-Location page click on Clear

Clear and flush DNS

  1. Press Start and search for Windows Terminal
  2. Click on Terminal in search results
  3. Type in: ipconfig /flushdns and press ENTER
And that is that!
Read More
Ordinal not found, dynamic link library Error
If you encounter an error message saying, “The ordinal xxx could not be located in the dynamic link library C:/Program Files (x86)/Microsoft VS Code Insiderscode – insiders.exe“ and you see a reference of a missing DLL file, then this indicates that the software is trying to locate the related DLL file, however, it is missing, hence the error. The error mentioned “Ordinal” which refers to the order of a number mathematically, e.g. 1st, 2nd, etc. And in this error message, the ordinal is referring to an Xth file of an XX.DLL file which is missing which is why you’re getting this kind of error. When you get this particular error, it means that your computer is missing the Microsoft Visual C++ Redistributable program. As per the error message, XXX is a number that in turn is the Ordinal. There is also another common error related to Ordinal which says, “The ordinal 12404 could not be located in the dynamic link library mfc90u.dl”. The error message could be referring to any DLL in the message. And since all these DLL files are part of the package, the error changes quite a bit as the Visual Studio looks for that DLL file. To fix this error, here are some suggestions that might be of help.

Option 1 – Try installing Microsoft Visual C++ Redistributable

As pointed out earlier, the error pops up when the Microsoft Visual C++ Redistributable program is missing on your computer. Thus, you need to download it from the official website of Microsoft. Once you’ve downloaded the Microsoft Visual C++ Feature Pack Redistributable Package, install it and then check if the error is now fixed.

Option 2 – Try to install OpenSSL

If you encounter the same error message but it points out that the LIBEAY32.DLL file is missing, then you have to install OpenSSL. In such a case, you will see the following error message:
“Ordinal not found. The Ordinal [Xxxx] could not be located in the Dynamic Link Library Libeay32.dll.”
 Make sure that when you install OpenSSL, you do it into the Windows system directory since the Libeay32.dll file is related to security.

Option 3 – Try to check Windows Updates

There are instances when Microsoft rolls out the framework and related updates via Windows Updates. It could be that an update related to DLL is still pending which is why you need to check Windows Updates. To do so, go to Settings > Update and Security and from there check if there is any pending update. If there is, you need to install that update and then restart your computer if needed.
Read More
A Quick Guide to Fixing Ieframe.dll Error

What is the Ieframe dll Error?

Ieframe.dll is a Dynamic Link Library, a collection of small programs. It is stored in C:\WINDOWS\SYSTEM32. The function of this dll file is to convert Html code into web pages on IE (Internet Explorer). When this file gets corrupt, you start experiencing ieframe.dll errors on your system. Ieframe.dll error is displayed in either of the following formats:
  • "Res://ieframe.dll/dnserror.htm#"
  • "Cannot find the file ieframe.dll"
  • "File Not Found C:WINDOWSSYSTEM32IEFRAME.DLL"

Solution

Restoro box imageError Causes

The Ieframe dll error code may occur due to multiple reasons. These include:
  • Incorrect Firewall settings
  • Ieframe.dll corruption and damage
  • Missing Ieframe.dll file
  • Internet Explorer issues
  • Viruses and malware attack
  • Outdated security software applications
If you wish to continue browsing on Internet Explorer, then it is important for you to resolve this error right away.

Further Information and Manual Repair

Here are some of the best solutions to resolve the Ieframe dll error on your PC:

Cause: Missing Ieframe.dll file

Solution: If Ieframe dll error file is missing, this means you have either accidentally deleted it while uninstalling a certain program that also shared this file. Therefore the best way to resolve the issue is to restore the missing Ieframe.dll file. To do this check the recycle bin. If you find the file, simply restore it in the following path C:\Windows\System32. However, if you are unable to find it, then download it from a reliable website.

Cause: Incorrect Firewall Settings

Solution:  In case the error is generated due to incorrect Firewall settings, then try disabling this software.  See if this works and resolves the error.

Cause: Internet Explorer Issues

Solution: Sometimes the Ieframe dll error can occur due to Internet Explorer issues. Here it is recommended to reinstall and update the latest version of IE on your system. This can be done by removing the program from the system. Go to the Control Panel, click Add/remove programs, and uninstall the program. After uninstalling the old version, install a new and updated version of IE on your system and try running it again. If it works, great the error is resolved. However, if it persists, then this means the problem is deeper and bigger than you think. The reason can be severe viral infection and malware attack not just damaging Ieframe.dll file but also exposing your system to privacy errors and threats.

Cause: Damaged and Corrupt Ieframe.dll files

Solution: The files can get corrupt when the registry overloads with data. It stores important and unnecessary files like junk files, cookies, internet history, temporary files, and invalid registry entries. Such files take up a lot of disk space and damages dll files. To resolve this issue it is advisable to download Restoro. This is a powerful registry cleaner, that detects and resolves all registry issues in seconds. It wipes out unnecessary and obsolete files cluttering the registry and restores the damaged Ieframe.dll files. It is efficient, safe, and compatible with all Windows versions. It has an intuitive interface and easy navigation which makes it simple and easy to use.

Cause: Viral Infection

Solution: If the underlying cause is a viral infection, Restoro takes care of that too. It is more than a registry cleaner. It is embedded with a powerful antivirus that removes all malicious software from your PC including viruses, Trojans, spyware, malware, and adware. And unlike a typical antivirus, it does not reduce the speed of your system. Its system optimizer utility boosts your PC speed dramatically. Click here to download Restoro on your PC today and resolve Ieframe dll error today!
Read More
Fix Folder Redirection Failed in Windows
If you got an error message saying, “Folder Redirection Failed, Failed to build the list of regular subfolders, Access is Denied” after you configured a new Group Policy Object or GPO which redirects User folders to a new network share or when you click on Reset default location under the Windows File Explorer or Folder Options, then you’ve come to the right place as this post will show you how to resolve this kind of error on your Windows 10 computer. Follow the given options below carefully to fix the “Folder Redirection Failed” error.

Option 1 – Take Ownership of the folder

If you are not able to access the folder could be one of the reasons why you’re getting the “Folder Redirection Failed” error and so you need to take ownership of the folder to resolve the problem. Before you proceed, make sure that your account is an admin account.
  • First, locate the concerned folder and right-click on it then select Properties.
  • Next, click on the Edit button in the Properties window and click OK to confirm if you got a User Account Control elevation request.
  • After that, select user/group from the permission windows or click on the Add button to add another user or group. It would be best if you add “Everyone” to give permission.
  • Then check “Full Control” under the “Allow” column to assign full access rights control permissions.
  • Now edit the permission to Full Control for “Everyone”.
  • Click OK to save the changes made and then exit.

Option 2 – Try to add Authenticated Users or Domain Computers

Make sure that the Folder Redirection group policy removal option is set to “Redirect the folder back to the user profile location when the policy is removed” when using the Folder Redirection. After that, you have to add Authenticated Users group with the “Read” permissions on the Group Policy Objects or GPOs. And if the Domain computers are part of the group of “Authenticated Users”. Note that by default, the “Authenticated Users” have these permissions on any new Group Policy Objects or GPOs. Once again, you have to add just “Read” permissions and not “Apply Group Policy” for “Authenticated Users”. Furthermore, to fix the “Failed to build the list of regular subfolders” errors, here are some options that could help.

Option a – Try to clear disk space

You might have to check if your disk is running out of space because if it is, then it will fail to create a list abruptly. And so you need to free up some disk space. You can either check on the files manually especially if you tend to keep your files at random places in your disk drive.

Option b – Find the Target route

You need to find the target route of the folder and then restore it if you are getting the “Failed to build the list of regular subdirectories” when you try to relocate the folder to the original location.

Option c – Try to change Ownership/Reset Defaults for all the User folders

If the “Failed to build the list of regular subdirectories” error pops up when you are trying to move a large number of files from one location to another, then you need to change the ownership of the folders as pointed out earlier.
Read More
1 2 3 171
Logo
Copyright © 2023, ErrorTools. All Rights Reserved
Trademark: Microsoft Windows logos are registered trademarks of Microsoft. Disclaimer: ErrorTools.com is not affiliated with Microsoft, nor claims direct affiliation.
The information on this page is provided for information purposes only.
DMCA.com Protection Status