gpt4 book ai didi

c++ - 如何为 C++ 程序禁用 VirtualStore?

转载 作者:可可西里 更新时间:2023-11-01 12:57:42 24 4
gpt4 key购买 nike

我希望我的程序在尝试在 C:\驱动器的根目录等 protected 位置创建文件时抛出错误(例如:FILE* FileHandle = fopen("\\file.txt",一))。相反,该文件会在 %APPDATA% 下的虚拟商店中创建。

如何禁用该虚拟商店?

谢谢

编辑:澄清一下,我不是在问如何规避安全措施并在 protected 位置创建我的文件。我希望文件创建失败,这样我就可以告诉用户他是个白痴。

最佳答案

您添加一个应用程序 list 。选择 asInvoker、highestAvailable 或 requireAdministrator。听起来你想要 asInvoker。

来自 http://msdn.microsoft.com/en-us/library/bb756929.aspx :

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity version="1.0.0.0"
processorArchitecture="X86"
name="IsUserAdmin"
type="win32"/>
<description>Description of your application</description>
<!-- Identify the application security requirements. -->
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges>
<requestedExecutionLevel
level="asInvoker"
uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>

关于c++ - 如何为 C++ 程序禁用 VirtualStore?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4730053/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com