通过代码编辑程序文件中的xml
Edit xml in program files throgh code
我在 C:\Program files(86)\Application
中有一个 xml 文件。
我只能通过以管理员身份打开的记事本编辑文件。我想通过代码编辑文件。是否可以通过代码编辑 xml 文件?
我正在使用 windows 8.1 和 visual studio 12.
您可以将 Application Manifest File
添加到您的项目并替换
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
与
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
这样您的应用程序将需要 运行.
的管理员权限
我在 C:\Program files(86)\Application
中有一个 xml 文件。
我只能通过以管理员身份打开的记事本编辑文件。我想通过代码编辑文件。是否可以通过代码编辑 xml 文件?
我正在使用 windows 8.1 和 visual studio 12.
您可以将 Application Manifest File
添加到您的项目并替换
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
与
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
这样您的应用程序将需要 运行.
的管理员权限