PowerShell 4将可执行文件路径作为第一个参数传递

时间:2014-09-10 18:51:44

标签: c# powershell manifest

我正在尝试运行C#控制台应用程序。当我使用PowerShell在Windows 8.1中启动它时,可执行文件的文件路径将作为第一个参数传递。我玩过应用程序并发现清单文件中的某些内容导致了这种情况。

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly
   xmlns="urn:schemas-microsoft-com:asm.v1"
   manifestVersion="1.0">
  <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
    <security>
     <requestedPrivileges>
        <requestedExecutionLevel level="requireAdministrator" uiAccess="true" />
      </requestedPrivileges>
    </security>
  </trustInfo>
</assembly>

如果我将请求的权限更改为

  <requestedExecutionLevel level="asinvoker" uiAccess="false" />

PowerShell不再将文件路径作为第一个参数传递。任何想法为什么会发生这种情况或如何阻止它?我需要按原样保留清单文件。

0 个答案:

没有答案