我的通用 Windows 平台软件是否能够获得启动关机所需的权限?

Is my Universal Windows Platform software able to gain the permission that is necessary for initiation of shutdown?

我希望我的通用 Windows 平台软件能够在通过单击 1 次按钮调用后关闭其主机,但是,到目前为止我已经尝试了 0 种方法经营过:

我试图指示 Windows 关闭,但 shutdown /s /t 120 无法运行,特别是在我的应用程序调用之后。

因此,我尝试使用本机 C# 代码。但是,使用它告诉我不允许调用 shutdown:

ShutdownManager.BeginShutdown(Windows.System.ShutdownKind.Shutdown, TimeSpan.FromSeconds(120));

我用了很多方法都无法解决这个问题

相关文件

MainPage.xaml.cs

using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using System;
using Windows.System;

// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=402352&clcid=0x409.
// Delete the extra namespaces when the application is complete.

namespace Shutdown_Roulette
{
    /// <summary>
    /// An empty page that can be used on its own or navigated to within a Frame.
    /// </summary>
    public sealed partial class MainPage : Page
    {
        public MainPage()
        {
            this.InitializeComponent();
        }

        private void Button_click(object sender, RoutedEventArgs e)
        {
            ShutdownManager.BeginShutdown(Windows.System.ShutdownKind.Shutdown, TimeSpan.FromSeconds(120));
        }
    }
}

Package.appxmanifest

<?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:iot="http://schemas.microsoft.com/appx/manifest/iot/windows10"
  IgnorableNamespaces="uap mp iot">

  <Identity
    Name="7eb73f1e-b159-4fd0-aab9-4158e57ba08a"
    Publisher="CN=rokeb"
    Version="1.0.0.0" />

  <mp:PhoneIdentity PhoneProductId="7eb73f1e-b159-4fd0-aab9-4158e57ba08a" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>

  <Properties>
    <DisplayName>Shutdown Roulette</DisplayName>
    <PublisherDisplayName>Master Roke Julian Lockhart Beedell</PublisherDisplayName>
    <Logo>Assets\StoreLogo.png</Logo>
  </Properties>

  <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="Shutdown_Roulette.App">
      <uap:VisualElements
        DisplayName="Shutdown Roulette"
        Square150x150Logo="Assets\Square150x150Logo.png"
        Square44x44Logo="Assets\Square44x44Logo.png"
        Description="Shutdown Roulette"
        BackgroundColor="transparent">
        <uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png" ShortName="Shutdown Roulette">
        </uap:DefaultTile >
        <uap:SplashScreen Image="Assets\SplashScreen.png" />
      </uap:VisualElements>
    </Application>
  </Applications>

  <Capabilities>
    <iot:Capability Name="systemManagement"/></Capabilities>
</Package>

请注意,我想在 Windows 10 而不是 Windows 10 IoT 上使用此命令;我只是试图使用这些命令,因为它们是我能够想到调用此命令而不依赖 PowerShell、Python 或 Windows 命令处理器的唯一其他方式。

根据ShowdownManager的描述,需要IOT SDK的支持,即平台限制API(仅在IOT设备上有效)

在Windows 10台桌面设备中,UWP没有关闭设备的权限。