英文:
How do you cd to a hidden system folder in Windows 10 command prompt
问题
如果我尝试在Windows 10命令提示符中更改目录到一个隐藏的系统文件夹,即使以管理员身份运行,也会收到“拒绝访问”的消息。
示例:
cd C:\Windows\System32\config\system
当我键入:dir /a
文件夹会显示出来
我可以拥有该文件夹,但我不禁想是否有更好的方法。
英文:
If I try to change directory inside the Windows 10 command prompt to a hidden system folder, even if I run as administrator, I get an Access is Denied message.
Example:
cd C:\Windows\System32\config\system
When I type in: dir /a
the folder is shown
I could take ownership of the folder, but I can't help but think there is a better way.
答案1
得分: 3
在我的Windows 10计算机上,"system"是一个文件,而不是一个目录。请将cd切换到c:\Windows\System32\config。
英文:
On my Windows 10 machine, "system" is a file, not a directory. cd to c:\Windows\System32\config instead.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论