Cannot delete corrupted folder in windows 10
Today when I was trying to decompile .apk file using WinRAR, I got an error and unzipping terminated. After that when I am trying to delete the folder I am getting an error that I don't have ownership of folder even though I am providing administrator permission.
Both file and parent folder of the file in the image gives an error when I try to delete it.
Then I tried doing the same using cmd in administrator mode by a command:
rm -d test
output :: rm: cannot unlink `test': Not owner
I also tried the following command to recursively delete files in a folder:
rm -r test
output:rm: WARNING: Circular directory structure.
This almost certainly means that you have a corrupted file system.
NOTIFY YOUR SYSTEM MANAGER.
The following two directories have the same inode number:
test
`test/ '
So I tried the following command to delete recursive file structure,
rm -rfd test
output: rm: cannot unlink `test': Not owner
All the above methods I used are either from StackOverflow or Microsoft QnA page but nothing seems to work.
I tried all this in safe mode also. But still, I get the same error. Twice I also got an error with an error code of 0x80070091
I already tried taking ownership of folder using takeown command.
takeown /f test /r
Output:
SUCCESS: The file (or folder): "C:UsersmandarDesktoptest" now owned by user "MANDAR_SADYEmandar".
SUCCESS: The file (or folder): "C:UsersmandarDesktoptest " now owned by user "MANDAR_SADYEmandar".
I tried all the possible solutions I could find but nothing seems to work.
If anyone has any suggestion regarding this issue then please post it as answer or comment as you see fit. Thank you in advance.
windows-10 permissions file-corruption rm
add a comment |
Today when I was trying to decompile .apk file using WinRAR, I got an error and unzipping terminated. After that when I am trying to delete the folder I am getting an error that I don't have ownership of folder even though I am providing administrator permission.
Both file and parent folder of the file in the image gives an error when I try to delete it.
Then I tried doing the same using cmd in administrator mode by a command:
rm -d test
output :: rm: cannot unlink `test': Not owner
I also tried the following command to recursively delete files in a folder:
rm -r test
output:rm: WARNING: Circular directory structure.
This almost certainly means that you have a corrupted file system.
NOTIFY YOUR SYSTEM MANAGER.
The following two directories have the same inode number:
test
`test/ '
So I tried the following command to delete recursive file structure,
rm -rfd test
output: rm: cannot unlink `test': Not owner
All the above methods I used are either from StackOverflow or Microsoft QnA page but nothing seems to work.
I tried all this in safe mode also. But still, I get the same error. Twice I also got an error with an error code of 0x80070091
I already tried taking ownership of folder using takeown command.
takeown /f test /r
Output:
SUCCESS: The file (or folder): "C:UsersmandarDesktoptest" now owned by user "MANDAR_SADYEmandar".
SUCCESS: The file (or folder): "C:UsersmandarDesktoptest " now owned by user "MANDAR_SADYEmandar".
I tried all the possible solutions I could find but nothing seems to work.
If anyone has any suggestion regarding this issue then please post it as answer or comment as you see fit. Thank you in advance.
windows-10 permissions file-corruption rm
add a comment |
Today when I was trying to decompile .apk file using WinRAR, I got an error and unzipping terminated. After that when I am trying to delete the folder I am getting an error that I don't have ownership of folder even though I am providing administrator permission.
Both file and parent folder of the file in the image gives an error when I try to delete it.
Then I tried doing the same using cmd in administrator mode by a command:
rm -d test
output :: rm: cannot unlink `test': Not owner
I also tried the following command to recursively delete files in a folder:
rm -r test
output:rm: WARNING: Circular directory structure.
This almost certainly means that you have a corrupted file system.
NOTIFY YOUR SYSTEM MANAGER.
The following two directories have the same inode number:
test
`test/ '
So I tried the following command to delete recursive file structure,
rm -rfd test
output: rm: cannot unlink `test': Not owner
All the above methods I used are either from StackOverflow or Microsoft QnA page but nothing seems to work.
I tried all this in safe mode also. But still, I get the same error. Twice I also got an error with an error code of 0x80070091
I already tried taking ownership of folder using takeown command.
takeown /f test /r
Output:
SUCCESS: The file (or folder): "C:UsersmandarDesktoptest" now owned by user "MANDAR_SADYEmandar".
SUCCESS: The file (or folder): "C:UsersmandarDesktoptest " now owned by user "MANDAR_SADYEmandar".
I tried all the possible solutions I could find but nothing seems to work.
If anyone has any suggestion regarding this issue then please post it as answer or comment as you see fit. Thank you in advance.
windows-10 permissions file-corruption rm
Today when I was trying to decompile .apk file using WinRAR, I got an error and unzipping terminated. After that when I am trying to delete the folder I am getting an error that I don't have ownership of folder even though I am providing administrator permission.
Both file and parent folder of the file in the image gives an error when I try to delete it.
Then I tried doing the same using cmd in administrator mode by a command:
rm -d test
output :: rm: cannot unlink `test': Not owner
I also tried the following command to recursively delete files in a folder:
rm -r test
output:rm: WARNING: Circular directory structure.
This almost certainly means that you have a corrupted file system.
NOTIFY YOUR SYSTEM MANAGER.
The following two directories have the same inode number:
test
`test/ '
So I tried the following command to delete recursive file structure,
rm -rfd test
output: rm: cannot unlink `test': Not owner
All the above methods I used are either from StackOverflow or Microsoft QnA page but nothing seems to work.
I tried all this in safe mode also. But still, I get the same error. Twice I also got an error with an error code of 0x80070091
I already tried taking ownership of folder using takeown command.
takeown /f test /r
Output:
SUCCESS: The file (or folder): "C:UsersmandarDesktoptest" now owned by user "MANDAR_SADYEmandar".
SUCCESS: The file (or folder): "C:UsersmandarDesktoptest " now owned by user "MANDAR_SADYEmandar".
I tried all the possible solutions I could find but nothing seems to work.
If anyone has any suggestion regarding this issue then please post it as answer or comment as you see fit. Thank you in advance.
windows-10 permissions file-corruption rm
windows-10 permissions file-corruption rm
edited Dec 18 '18 at 12:45
Ahmed Ashour
1,146611
1,146611
asked Dec 18 '18 at 10:29
Mandar SadyeMandar Sadye
32
32
add a comment |
add a comment |
4 Answers
4
active
oldest
votes
Run the command
chkdsk
and see if it finds errors.
For further understanding the errors, it is possible to
Read Chkdsk Log in Event Viewer in Windows 10.
If errors are found, and if they don't sound too menacing or there are too many
of them, to fix the errors run the command:
chkdsk /f
Ensure having a good backup of your files before starting.
add a comment |
Well after many trial and error I found the way to delete it.
I found a solution before I could try harrymc's solution, so wasn't able to confirm if his solution works.
The way I did it isn't straightforward so I highly recommend trying his solution first and let me know if it works so I can mark it as an acceptable answer.
So the method I followed is to open the folder in the different file system.
- The way I did it was to delete it through bootable Linux pen drive ( I used Kali but any other distribution should work well.
- You could try to delete it by sharing the folder to virtual box or VMware virtual machine with Linux and try deleting it.
- And the third way is to share the folder in your local network and try to delete it from your Android or MAC device connected to the network ( remember android has Linux kernel and MAC has Unix so both should work)
So I guess the problem is with the windows NTFS file system.
As you can see with the exception to the third method you need to have some sought of the secondary OS in form of bootable or virtual machine which most people won't have. So try the 3rd solution. If it doesn't work then try harrymc's solution. And if even that doesn't work then you can install a virtual machine or make bootable pen drive and try deleting it.
add a comment |
Your problem is that you have a file system entry with a name containing only a space (test
, note the space after the backslash). This is technically possible in NTFS, but is not at all permitted in Win32 and most Windows APIs will not handle it gracefully at all. They will try to strip the spaces from the ends of the file name, and then get very confused when the filename isn't there anymore and may treat it as though you're referring to the directory; this happens even if you use a format like test*
or " "
.
There are two ways out of this within Windows itself.
- Bypass the Win32 path translation. This is done by prefixing a fully-qualified path with
\?
. Doing this turns off all of the Win32 rules about what is a valid file name (such as "cannot begin or end with a space"), leaving only the much more restrictive set of NTFS rules (cannot contain aor
:
, for example). Note that it also turns off convenient shorthands like using relative paths; if you want to do this you must supply an absolute path (C:UsersmandarDesktoptest ) and you will need to quote it so the command line knows you meant to include that final space:del "\?C:UsersmandarDesktoptest "
(and yes, you should be usingcmd.exe
for this; Powershell ignores the ? and Unix-like shells running on Windows via MinGW or Cygwin don't use paths of the format the kernel expects). - Use the native Linux subsystem in Windows (which runs unmodified Linux binaries directly on the NT kernel, through a special driver). Linux (as you found) supports dealing with files that have silly names like
and so does WSL, the Windows Subsystem for Linux. If you haven't used WSL before, you'll need to install some Linux distro from the Windows app store (Ubuntu and OpenSUSE are both available and suitable for general use, Kali is also available if you want a special-purpose distro on your Windows box; you can install more than one if you want). From within
bash
(or other shell) of a WSL distro, navigate to the relevant directory (cd /mnt/c/Users/mandar/Desktop/test
) and then delete the offending file (rm ' '
) or simply the whole directory.
add a comment |
I've found a fix that works for me.
At the Advanced Security Settings page you need to change to Administrators (with an s at the end otherwise you get Enum errors) and click ok because the 'replace all child ...' option is missing.
Then reopen it and do the same thing again, this time the 'replace all child option is present' so tick that and the 'replace owner on ...' checkbox. Then click ok
You should now be able to Edit to give permission to Administrators. Close that menu again and you should be able to delete.
I'm sure it is either a glitch or something but it works for me.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1385516%2fcannot-delete-corrupted-folder-in-windows-10%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
Run the command
chkdsk
and see if it finds errors.
For further understanding the errors, it is possible to
Read Chkdsk Log in Event Viewer in Windows 10.
If errors are found, and if they don't sound too menacing or there are too many
of them, to fix the errors run the command:
chkdsk /f
Ensure having a good backup of your files before starting.
add a comment |
Run the command
chkdsk
and see if it finds errors.
For further understanding the errors, it is possible to
Read Chkdsk Log in Event Viewer in Windows 10.
If errors are found, and if they don't sound too menacing or there are too many
of them, to fix the errors run the command:
chkdsk /f
Ensure having a good backup of your files before starting.
add a comment |
Run the command
chkdsk
and see if it finds errors.
For further understanding the errors, it is possible to
Read Chkdsk Log in Event Viewer in Windows 10.
If errors are found, and if they don't sound too menacing or there are too many
of them, to fix the errors run the command:
chkdsk /f
Ensure having a good backup of your files before starting.
Run the command
chkdsk
and see if it finds errors.
For further understanding the errors, it is possible to
Read Chkdsk Log in Event Viewer in Windows 10.
If errors are found, and if they don't sound too menacing or there are too many
of them, to fix the errors run the command:
chkdsk /f
Ensure having a good backup of your files before starting.
edited Dec 18 '18 at 12:01
answered Dec 18 '18 at 11:29
harrymcharrymc
255k14265565
255k14265565
add a comment |
add a comment |
Well after many trial and error I found the way to delete it.
I found a solution before I could try harrymc's solution, so wasn't able to confirm if his solution works.
The way I did it isn't straightforward so I highly recommend trying his solution first and let me know if it works so I can mark it as an acceptable answer.
So the method I followed is to open the folder in the different file system.
- The way I did it was to delete it through bootable Linux pen drive ( I used Kali but any other distribution should work well.
- You could try to delete it by sharing the folder to virtual box or VMware virtual machine with Linux and try deleting it.
- And the third way is to share the folder in your local network and try to delete it from your Android or MAC device connected to the network ( remember android has Linux kernel and MAC has Unix so both should work)
So I guess the problem is with the windows NTFS file system.
As you can see with the exception to the third method you need to have some sought of the secondary OS in form of bootable or virtual machine which most people won't have. So try the 3rd solution. If it doesn't work then try harrymc's solution. And if even that doesn't work then you can install a virtual machine or make bootable pen drive and try deleting it.
add a comment |
Well after many trial and error I found the way to delete it.
I found a solution before I could try harrymc's solution, so wasn't able to confirm if his solution works.
The way I did it isn't straightforward so I highly recommend trying his solution first and let me know if it works so I can mark it as an acceptable answer.
So the method I followed is to open the folder in the different file system.
- The way I did it was to delete it through bootable Linux pen drive ( I used Kali but any other distribution should work well.
- You could try to delete it by sharing the folder to virtual box or VMware virtual machine with Linux and try deleting it.
- And the third way is to share the folder in your local network and try to delete it from your Android or MAC device connected to the network ( remember android has Linux kernel and MAC has Unix so both should work)
So I guess the problem is with the windows NTFS file system.
As you can see with the exception to the third method you need to have some sought of the secondary OS in form of bootable or virtual machine which most people won't have. So try the 3rd solution. If it doesn't work then try harrymc's solution. And if even that doesn't work then you can install a virtual machine or make bootable pen drive and try deleting it.
add a comment |
Well after many trial and error I found the way to delete it.
I found a solution before I could try harrymc's solution, so wasn't able to confirm if his solution works.
The way I did it isn't straightforward so I highly recommend trying his solution first and let me know if it works so I can mark it as an acceptable answer.
So the method I followed is to open the folder in the different file system.
- The way I did it was to delete it through bootable Linux pen drive ( I used Kali but any other distribution should work well.
- You could try to delete it by sharing the folder to virtual box or VMware virtual machine with Linux and try deleting it.
- And the third way is to share the folder in your local network and try to delete it from your Android or MAC device connected to the network ( remember android has Linux kernel and MAC has Unix so both should work)
So I guess the problem is with the windows NTFS file system.
As you can see with the exception to the third method you need to have some sought of the secondary OS in form of bootable or virtual machine which most people won't have. So try the 3rd solution. If it doesn't work then try harrymc's solution. And if even that doesn't work then you can install a virtual machine or make bootable pen drive and try deleting it.
Well after many trial and error I found the way to delete it.
I found a solution before I could try harrymc's solution, so wasn't able to confirm if his solution works.
The way I did it isn't straightforward so I highly recommend trying his solution first and let me know if it works so I can mark it as an acceptable answer.
So the method I followed is to open the folder in the different file system.
- The way I did it was to delete it through bootable Linux pen drive ( I used Kali but any other distribution should work well.
- You could try to delete it by sharing the folder to virtual box or VMware virtual machine with Linux and try deleting it.
- And the third way is to share the folder in your local network and try to delete it from your Android or MAC device connected to the network ( remember android has Linux kernel and MAC has Unix so both should work)
So I guess the problem is with the windows NTFS file system.
As you can see with the exception to the third method you need to have some sought of the secondary OS in form of bootable or virtual machine which most people won't have. So try the 3rd solution. If it doesn't work then try harrymc's solution. And if even that doesn't work then you can install a virtual machine or make bootable pen drive and try deleting it.
answered Dec 30 '18 at 6:43
Mandar SadyeMandar Sadye
32
32
add a comment |
add a comment |
Your problem is that you have a file system entry with a name containing only a space (test
, note the space after the backslash). This is technically possible in NTFS, but is not at all permitted in Win32 and most Windows APIs will not handle it gracefully at all. They will try to strip the spaces from the ends of the file name, and then get very confused when the filename isn't there anymore and may treat it as though you're referring to the directory; this happens even if you use a format like test*
or " "
.
There are two ways out of this within Windows itself.
- Bypass the Win32 path translation. This is done by prefixing a fully-qualified path with
\?
. Doing this turns off all of the Win32 rules about what is a valid file name (such as "cannot begin or end with a space"), leaving only the much more restrictive set of NTFS rules (cannot contain aor
:
, for example). Note that it also turns off convenient shorthands like using relative paths; if you want to do this you must supply an absolute path (C:UsersmandarDesktoptest ) and you will need to quote it so the command line knows you meant to include that final space:del "\?C:UsersmandarDesktoptest "
(and yes, you should be usingcmd.exe
for this; Powershell ignores the ? and Unix-like shells running on Windows via MinGW or Cygwin don't use paths of the format the kernel expects). - Use the native Linux subsystem in Windows (which runs unmodified Linux binaries directly on the NT kernel, through a special driver). Linux (as you found) supports dealing with files that have silly names like
and so does WSL, the Windows Subsystem for Linux. If you haven't used WSL before, you'll need to install some Linux distro from the Windows app store (Ubuntu and OpenSUSE are both available and suitable for general use, Kali is also available if you want a special-purpose distro on your Windows box; you can install more than one if you want). From within
bash
(or other shell) of a WSL distro, navigate to the relevant directory (cd /mnt/c/Users/mandar/Desktop/test
) and then delete the offending file (rm ' '
) or simply the whole directory.
add a comment |
Your problem is that you have a file system entry with a name containing only a space (test
, note the space after the backslash). This is technically possible in NTFS, but is not at all permitted in Win32 and most Windows APIs will not handle it gracefully at all. They will try to strip the spaces from the ends of the file name, and then get very confused when the filename isn't there anymore and may treat it as though you're referring to the directory; this happens even if you use a format like test*
or " "
.
There are two ways out of this within Windows itself.
- Bypass the Win32 path translation. This is done by prefixing a fully-qualified path with
\?
. Doing this turns off all of the Win32 rules about what is a valid file name (such as "cannot begin or end with a space"), leaving only the much more restrictive set of NTFS rules (cannot contain aor
:
, for example). Note that it also turns off convenient shorthands like using relative paths; if you want to do this you must supply an absolute path (C:UsersmandarDesktoptest ) and you will need to quote it so the command line knows you meant to include that final space:del "\?C:UsersmandarDesktoptest "
(and yes, you should be usingcmd.exe
for this; Powershell ignores the ? and Unix-like shells running on Windows via MinGW or Cygwin don't use paths of the format the kernel expects). - Use the native Linux subsystem in Windows (which runs unmodified Linux binaries directly on the NT kernel, through a special driver). Linux (as you found) supports dealing with files that have silly names like
and so does WSL, the Windows Subsystem for Linux. If you haven't used WSL before, you'll need to install some Linux distro from the Windows app store (Ubuntu and OpenSUSE are both available and suitable for general use, Kali is also available if you want a special-purpose distro on your Windows box; you can install more than one if you want). From within
bash
(or other shell) of a WSL distro, navigate to the relevant directory (cd /mnt/c/Users/mandar/Desktop/test
) and then delete the offending file (rm ' '
) or simply the whole directory.
add a comment |
Your problem is that you have a file system entry with a name containing only a space (test
, note the space after the backslash). This is technically possible in NTFS, but is not at all permitted in Win32 and most Windows APIs will not handle it gracefully at all. They will try to strip the spaces from the ends of the file name, and then get very confused when the filename isn't there anymore and may treat it as though you're referring to the directory; this happens even if you use a format like test*
or " "
.
There are two ways out of this within Windows itself.
- Bypass the Win32 path translation. This is done by prefixing a fully-qualified path with
\?
. Doing this turns off all of the Win32 rules about what is a valid file name (such as "cannot begin or end with a space"), leaving only the much more restrictive set of NTFS rules (cannot contain aor
:
, for example). Note that it also turns off convenient shorthands like using relative paths; if you want to do this you must supply an absolute path (C:UsersmandarDesktoptest ) and you will need to quote it so the command line knows you meant to include that final space:del "\?C:UsersmandarDesktoptest "
(and yes, you should be usingcmd.exe
for this; Powershell ignores the ? and Unix-like shells running on Windows via MinGW or Cygwin don't use paths of the format the kernel expects). - Use the native Linux subsystem in Windows (which runs unmodified Linux binaries directly on the NT kernel, through a special driver). Linux (as you found) supports dealing with files that have silly names like
and so does WSL, the Windows Subsystem for Linux. If you haven't used WSL before, you'll need to install some Linux distro from the Windows app store (Ubuntu and OpenSUSE are both available and suitable for general use, Kali is also available if you want a special-purpose distro on your Windows box; you can install more than one if you want). From within
bash
(or other shell) of a WSL distro, navigate to the relevant directory (cd /mnt/c/Users/mandar/Desktop/test
) and then delete the offending file (rm ' '
) or simply the whole directory.
Your problem is that you have a file system entry with a name containing only a space (test
, note the space after the backslash). This is technically possible in NTFS, but is not at all permitted in Win32 and most Windows APIs will not handle it gracefully at all. They will try to strip the spaces from the ends of the file name, and then get very confused when the filename isn't there anymore and may treat it as though you're referring to the directory; this happens even if you use a format like test*
or " "
.
There are two ways out of this within Windows itself.
- Bypass the Win32 path translation. This is done by prefixing a fully-qualified path with
\?
. Doing this turns off all of the Win32 rules about what is a valid file name (such as "cannot begin or end with a space"), leaving only the much more restrictive set of NTFS rules (cannot contain aor
:
, for example). Note that it also turns off convenient shorthands like using relative paths; if you want to do this you must supply an absolute path (C:UsersmandarDesktoptest ) and you will need to quote it so the command line knows you meant to include that final space:del "\?C:UsersmandarDesktoptest "
(and yes, you should be usingcmd.exe
for this; Powershell ignores the ? and Unix-like shells running on Windows via MinGW or Cygwin don't use paths of the format the kernel expects). - Use the native Linux subsystem in Windows (which runs unmodified Linux binaries directly on the NT kernel, through a special driver). Linux (as you found) supports dealing with files that have silly names like
and so does WSL, the Windows Subsystem for Linux. If you haven't used WSL before, you'll need to install some Linux distro from the Windows app store (Ubuntu and OpenSUSE are both available and suitable for general use, Kali is also available if you want a special-purpose distro on your Windows box; you can install more than one if you want). From within
bash
(or other shell) of a WSL distro, navigate to the relevant directory (cd /mnt/c/Users/mandar/Desktop/test
) and then delete the offending file (rm ' '
) or simply the whole directory.
answered Dec 30 '18 at 9:01
CBHackingCBHacking
4,1452932
4,1452932
add a comment |
add a comment |
I've found a fix that works for me.
At the Advanced Security Settings page you need to change to Administrators (with an s at the end otherwise you get Enum errors) and click ok because the 'replace all child ...' option is missing.
Then reopen it and do the same thing again, this time the 'replace all child option is present' so tick that and the 'replace owner on ...' checkbox. Then click ok
You should now be able to Edit to give permission to Administrators. Close that menu again and you should be able to delete.
I'm sure it is either a glitch or something but it works for me.
add a comment |
I've found a fix that works for me.
At the Advanced Security Settings page you need to change to Administrators (with an s at the end otherwise you get Enum errors) and click ok because the 'replace all child ...' option is missing.
Then reopen it and do the same thing again, this time the 'replace all child option is present' so tick that and the 'replace owner on ...' checkbox. Then click ok
You should now be able to Edit to give permission to Administrators. Close that menu again and you should be able to delete.
I'm sure it is either a glitch or something but it works for me.
add a comment |
I've found a fix that works for me.
At the Advanced Security Settings page you need to change to Administrators (with an s at the end otherwise you get Enum errors) and click ok because the 'replace all child ...' option is missing.
Then reopen it and do the same thing again, this time the 'replace all child option is present' so tick that and the 'replace owner on ...' checkbox. Then click ok
You should now be able to Edit to give permission to Administrators. Close that menu again and you should be able to delete.
I'm sure it is either a glitch or something but it works for me.
I've found a fix that works for me.
At the Advanced Security Settings page you need to change to Administrators (with an s at the end otherwise you get Enum errors) and click ok because the 'replace all child ...' option is missing.
Then reopen it and do the same thing again, this time the 'replace all child option is present' so tick that and the 'replace owner on ...' checkbox. Then click ok
You should now be able to Edit to give permission to Administrators. Close that menu again and you should be able to delete.
I'm sure it is either a glitch or something but it works for me.
answered Dec 24 '18 at 15:50
SpedleySpedley
1
1
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1385516%2fcannot-delete-corrupted-folder-in-windows-10%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown