Thanks for the earlier support. Just wanted to post a quick update in case anyone else runs into a similar situation. ✅ Issue: I was unable to access my D:\ drive via File Explorer due to what seemed like permission issues, but I was able to access the drive through CLI (PowerShell). Running Get-Acl on the drive showed that the owner and permissions seemed okay, but Explorer still denied access. ✅ Solution: Turns out, the permissions were either incomplete or not properly recognized by File Explorer. I resolved the issue using the following PowerShell command: powershell icacls D:\ /grant "*YourUsernameHere*:(OI)(CI)F" /T 📌 Replace *YourUsernameHere* with your actual Windows username. This command grants Full Control recursively (/T) for all files and folders inside D:\, ensuring proper access. After running this, I was able to access the drive in File Explorer without any problems. 🔍 Note: To audit how the permissions may have changed, you can enable Object Access Auditing using auditpol and review Event ID 4670 in Event Viewer > Windows Logs > Security. Possible Correlation with Splunk Enterprise Installation After reflecting on the issue, I suspect that this might have occurred right after installing Splunk Enterprise. While I could be mistaken, it would be great if the Splunk team could check on this to ensure it doesn’t affect others in the future. I hope this helps anyone facing a similar issue, and I look forward to any additional insights or suggestions from the community.
... View more