问题描述
相关的微软文档是:
阻止对卷的直接写入操作和磁盘
CreateFile,备注物理磁盘和卷
该可执行文件是用 C++ 编写的,它调用 CreateFile()
来打开一个没有文件系统的 SD 卡.对于没有管理员权限的 GENERIC_READ
,CreateFile()
和连续的 ReadFile()
调用成功.
The executable is written in C++ and it calls CreateFile()
to open an SD card that has no filesystem. The CreateFile()
and consecutive ReadFile()
calls are successful for GENERIC_READ
without Administrator privileges.
CreateFile
对于 GENERIC_WRITE
也失败.在资源管理器中,我在属性">兼容性">权限级别"下设置以管理员身份运行".我还尝试从管理员 cmd 运行可执行文件(以 Ctrl+Shift+Enter 开始,管理员:"在窗口标题中,正确提升).尽管如此,我还是收到了 ERROR_ACCESS_DENIED
(0x5).
CreateFile
fails for GENERIC_WRITE
even with Administrator privileges. In the explorer, I set Run as Administrator under Properties > Compatibility > Privilege Level. I also tried to run the executable from an Administrator cmd (started with Ctrl+Shift+Enter, "Administrator:" is in the window title, properly elevated). Still, I get ERROR_ACCESS_DENIED
(0x5).
我是否必须将其他内容传递给 CreateFile
? 我不知道什么是安全属性,我只是传递 NULL,相关代码在这里第 92 行,以及 此处 位于第 48 行.
Do I have to pass something else to CreateFile
? I have no idea what security attributes are, I just pass NULL, relevant code is here at line 92, and here at line 48.
或者是否应该设置其他任何内容以使用管理员权限运行该进程?
一个相关问题:
Or is there anything else that should be set to run the process with Administrator privileges?
A related questions:
我可以在用户模式下在 Vista 和 Windows 7 下获得对原始磁盘扇区的写访问权限吗?
Windows Vista 中的原始分区访问
如何在 C 中直接访问原始高清数据?
是否有一种干净的方法可以在 Windows 下获得对物理分区的独占访问权限?
推荐答案
只需要 GENERIC_WRITE
的情况很少见.您很可能需要 GENERIC_READ|GENERIC_WRITE
.
It's quite rare to want only GENERIC_WRITE
. You most likely want GENERIC_READ|GENERIC_WRITE
.
这篇关于CreateFile:对原始磁盘的直接写操作“拒绝访问";- Vista、Win7的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!