有没有办法从我的 UWP 应用程序启动 powershell 脚本?
我读过我们必须使用 FullTrustProcessLauncher 类,但我不明白如何使用/实现它。
你有什么主意吗 ?
有没有办法从我的 UWP 应用程序启动 powershell 脚本?
我读过我们必须使用 FullTrustProcessLauncher 类,但我不明白如何使用/实现它。
你有什么主意吗 ?
文档:https ://docs.microsoft.com/en-us/uwp/api/Windows.ApplicationModel.FullTrustProcessLauncher
示例: https ://github.com/Microsoft/DesktopBridgeToUWP-Samples/tree/master/Samples/AppServiceBridgeSample
https://github.com/Microsoft/DesktopBridgeToUWP-Samples/tree/master/Samples/SQLServer
简而言之,这是您需要做的:
1) 添加对桌面扩展 SDK 的引用
2) 在清单中声明 windows.FullTrustProcess 扩展
3)(可选)声明一个应用服务,用于在你的 UWP 和完全信任进程之间进行通信
4) 在你的包中包含一个 Win32 EXE,它将从 FullTrustProcessLauncher API 启动
5)Win32 EXE现在可以调用你的powershell等。