建立一个BootLoader的项目目录,实现以下功能:

1、基于rust开发的windows应用程序
2、它的功能就是等待Updater应用程序退出后,将Updater.new.exe覆盖为Updater.exe并在成功后删除Updater.new.exe
3、最后启动Updater.exe
4、要求静默执行,不显示任何窗口
This commit is contained in:
zqm
2026-04-07 11:05:16 +08:00
parent 34444a2b9c
commit c41b5ff145
5 changed files with 243 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
[package]
name = "BootLoader"
version = "0.1.0"
edition = "2024"
[dependencies]
windows = { version = "0.56", features = ["Win32_System_Console", "Win32_Foundation", "Win32_System_ProcessStatus"] }