运行使用Windows桌面桥转换的应用程序始终作为管理员?

时间:2017-04-07 00:51:07

标签: c# uwp windows-10 desktop-bridge desktop-app-converter

我有一个使用Desktop to UWP Bridge转换的应用,特别是Desktop App Converter自动完成的应用。它转换和安装很好,但当我尝试运行它时,我收到一个错误,可执行文件需要提升。我可以使用Right Click -> Run as Administrator来解决此问题,但我希望将此应用程序重新打包为默认设置,因此不需要执行此额外步骤。值得注意的是,我可以在没有管理员权限的情况下将应用程序作为正常安装运行,只有转换后的应用程序需要此功能。

有没有办法在与转换应用相关联的AppxManifest.xml文件中包含所需的提升请求?我希望会有像

这样简单的东西
<Application Id="MyApp" Permissions="Administrator">

清单here上有文档,但我找不到与权限或提升级别相关的任何内容。

这是转换器生成的AppxManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:uap2="http://schemas.microsoft.com/appx/manifest/uap/windows10/2" xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10">
  <Identity Name="MyApp" ProcessorArchitecture="x86" Publisher="CN=Me" Version="5.70.0.0" />
  <Properties>
    <DisplayName>MyApp</DisplayName>
    <PublisherDisplayName>Me</PublisherDisplayName>
    <Logo>Assets\AppStoreLogo.png</Logo>
  </Properties>
  <Resources>
    <Resource Language="en-us" />
    <Resource uap:Scale="100" />
    <Resource uap:Scale="125" />
    <Resource uap:Scale="150" />
    <Resource uap:Scale="200" />
    <Resource uap:Scale="400" />
  </Resources>
  <Dependencies>
    <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.14393.0" MaxVersionTested="10.0.14393.0" />
  </Dependencies>
  <Capabilities>
    <rescap:Capability Name="runFullTrust" />
  </Capabilities>
  <Applications>
    <Application Id="MyApp" Executable="Integrator.exe" EntryPoint="Windows.FullTrustApplication">
      <uap:VisualElements DisplayName="MyApp" Description="MyApp" BackgroundColor="transparent" Square150x150Logo="Assets\AppMedTile.png" Square44x44Logo="Assets\AppList.png">
        <uap:DefaultTile Wide310x150Logo="Assets\AppWideTile.png" Square310x310Logo="Assets\AppLargeTile.png" Square71x71Logo="Assets\AppSmallTile.png">
          <uap:ShowNameOnTiles>
            <uap:ShowOn Tile="square150x150Logo" />
            <uap:ShowOn Tile="wide310x150Logo" />
            <uap:ShowOn Tile="square310x310Logo" />
          </uap:ShowNameOnTiles>
        </uap:DefaultTile>
      </uap:VisualElements>
      <Extensions>
        <uap3:Extension Category="windows.fileTypeAssociation">
          <uap3:FileTypeAssociation Name="gfe">
            <uap:SupportedFileTypes>
              <uap:FileType>.gfe</uap:FileType>
            </uap:SupportedFileTypes>
          </uap3:FileTypeAssociation>
        </uap3:Extension>
        <uap3:Extension Category="windows.fileTypeAssociation">
          <uap3:FileTypeAssociation Name="gfs">
            <uap:SupportedFileTypes>
              <uap:FileType>.gfs</uap:FileType>
            </uap:SupportedFileTypes>
          </uap3:FileTypeAssociation>
        </uap3:Extension>
        <uap3:Extension Category="windows.appExecutionAlias" Executable="Integrator.exe" EntryPoint="Windows.FullTrustApplication">
          <uap3:AppExecutionAlias>
            <desktop:ExecutionAlias Alias="Integrator5.exe" />
          </uap3:AppExecutionAlias>
        </uap3:Extension>
      </Extensions>
    </Application>
  </Applications>
</Package>

1 个答案:

答案 0 :(得分:4)

更新:从Windows 10更新1809(版本17763)开始,您现在可以声明&#39; allowElevation&#39;能够启用自动/自我提升。以下是有关此功能的教程:https://stefanwick.com/2018/10/01/app-elevation-samples-part-1/

以前的答案(适用于Windows 10的1809版本之前):
目前不支持自动提升应用。用户可以选择以管理员身份运行您的应用。

此策略在Desktop Bridge的准备指南中调用: https://docs.microsoft.com/en-us/windows/uwp/porting/desktop-to-uwp-prepare (子弹#2)

谢谢, Stefan Wick - Windows开发人员平台