在 Windows IoT Core 上启动 exe 作为服务

Starting an exe as a service on Windows IoT Core

我正在测试 iot-core-azure-dm-client. I've developed a sample UWP application and incorporated the dm client library code to it. I've deployed the uwp app to the pi (Running on Windows IoT Core), added the SystemConfigurator.exe to the system32 folder and started the service, as stated here

我设法让远程设备管理与代码库中提供的设备控制器应用程序一起工作。

我的问题是,每次启动 pi 时,我都必须手动 运行 服务 SystemConfigurator.exe 才能使远程设备管理工作。有没有办法在启动时将此服务配置为 运行?

您可以使用以下命令在系统启动时创建任务到运行批处理文件。

schtasks /Create /SC ONSTART /TN startSystemConfigurator /TR "c:\Projects\MyApp\Startup.bat" /RU SYSTEM

批处理文件包含启动服务的命令net start SystemConfigurator