我正在开发一个需要删除System32中的几个文件的C#应用程序,我正在做以下事情:
File.Delete(@"c:\windows\system32\<file>");
这不起作用,它不会抛出异常但它也不会删除该文件。我认为这与权限有关,但我不确定如何解决它。你能帮忙吗?
答案 0 :(得分:2)
好吧,我们假设您没有做恶意的事情;) 无论如何,没有尝试过,但模仿会有所帮助。
谷歌模仿c#,你会看到很多例子,邮件的想法很简单:你的代码通常在用户的特权下运行。通过模拟,您可以在另一个用户的权限下运行您的代码(以编程方式,用户不需要做任何事情)。因此,如果用户可以直接访问该文件夹而不需要UAC restirction,那么理论上它应该只运行。但是,我还没有尝试过,所以如果它不起作用,不要生气。只是一个想法。
答案 1 :(得分:1)
如果您在Vista或7(或Server 2008+)上执行此操作,UAC也会妨碍您的删除。在这种情况下,您需要修改应用程序的清单,以便在启动时提升其权限(或启动提升的子应用程序或进程):
http://victorhurdugaci.com/using-uac-with-c-part-1/
此外,如果您发布了您正在获得的异常,那将会很有帮助,因为这将表明它是与权限相关的,与x64相关的还是UAC。
答案 2 :(得分:0)
您需要管理员权限才能修改该文件夹中的文件。在属性中使用app.manifest
文件,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<assemblyIdentity version="1.0.0.0" name="YourApplication.app" />
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
</requestedPrivileges>
<applicationRequestMinimum>
<defaultAssemblyRequest permissionSetReference="Custom" />
<PermissionSet ID="Custom" SameSite="site" Unrestricted="true" />
</applicationRequestMinimum>
</security>
</trustInfo>
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!-- A list of all Windows versions that this application is designed to work with. Windows will automatically select the most compatible environment.-->
<!-- If your application is designed to work with Windows 7, uncomment the following supportedOS node-->
<!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>-->
</application>
</compatibility>
<!-- Enable themes for Windows common controls and dialogs (Windows XP and later) -->
<!-- <dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="*"
publicKeyToken="789cf14ab782c1eb"
language="*"
/>
</dependentAssembly>
</dependency>-->
</asmv1:assembly>