2017-11-06 40 views
0

FullTrustProcessLauncherを使用してUWPアプリケーションからpowershell(すべてのユーザーが実行できる軽量コマンド)コマンドを起動しようとしています。UWPとFullTrustProcessLauncherが存在しません

問題この名前が現在のコンテキストに存在しないという問題が発生しています。

、それがどのように見えるので、私のマニフェストはlarglyデフォルトです:私はのように見えるから、それを呼び出すようにしようとしています

<?xml version="1.0" encoding="utf-8"?> 

<Package 
    xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" 
    xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" 
    xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" 

    xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" 
    xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10" 

    IgnorableNamespaces="uap mp"> 

<Dependencies> 
    <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" /> 
</Dependencies> 

<Resources> 
    <Resource Language="x-generate"/> 
</Resources> 

<Applications> 
    <Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="PrototypeProject.App"> 

    <Extensions> 
     <desktop:Extension Category="windows.fullTrustProcess" Executable="powershell.exe"> 
     <desktop:FullTrustProcess> 
     <desktop:ParameterGroup GroupId="TestGroup" Parameters="ls"/> 
     </desktop:FullTrustProcess> 
    </desktop:Extension> 
    </Extensions> 

    </Application> 
</Applications> 

<Capabilities> 
    <Capability Name="internetClient" /> 

    <rescap:Capability Name="runFullTrust"/> 

    </Capabilities> 
</Package> 

とクラス:今、私は何かが欠けています

using Windows.ApplicationModel; 
using Windows.Foundation; 

namespace FullTrustProcess 
{ 
    public class Ftp 
    { 
     public const string FtpParamGroupId = "TestGroup"; 

     public void RunFtp() 
     { 
      IAsyncAction operation = FullTrustProcessLauncher.LaunchFullTrustProcessForCurrentAppAsync(FtpParamGroupId); 
     } 
    } 
} 

?私が行方不明になったように見えます

答えて

0

- UWPのためのWindowsデスクトップの拡張機能を拡張では、私が知っている

+0

を参照するが、SO私にこの明日行うには、この機会を与える:)限界であること:) –

関連する問題