Hi @Dean Porter
Thank you for posting your question in the Microsoft Q&A forum
Regarding your issue, the error usually means the folder's "Security Descriptor" has become corrupted or was modified by the setting you changed. When you "clicked something" to stop notifications, you might have inadvertently tightened a security policy or altered User Account Control (UAC) settings.
Here are a few steps you can try:
1. Take ownership of the Folder
- Right-click the main directory and select Properties.
- Go to the Security tab and click Advanced.
- Look for Owner: at the top. Click Change.
- Type Everyone in the box, click Check Names, and hit OK.
- Crucial: Check the box that says, "Replace owner on subcontainers and objects".
- Click Apply and OK.
- Reset Permissions
- Type cmd in your Start menu, right-click it, and Run as Administrator.
- Type the following command (replace the path with your actual folder path):
- takeown /f "C:\Path\To\Folder" /r /d y
- Then, run this command to grant yourself full control:
- icacls "C:\Path\To\Folder" /grant everyone:F /t
- /f: Specifies the file or directory.
- /r: Performs the operation on all files in the directory (recursive).
- /grant everyone:F: Gives every user "Full Control."
- Check your UAC Settings
- Search for "Change User Account Control settings" in the Start menu.
- Ensure the slider is not at the very top ("Always notify") or the very bottom ("Never notify").
-
- The second from the top is the default. If it was set to "Never notify" while your account permissions were in flux, Windows might simply block actions instead of asking for your password.
Hopefully it will help work with your issue and if you have any other questions or need further assistance, feel free to ask.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.