1、基于rust开发的windows应用程序 2、它的功能就是等待Updater应用程序退出后,将Updater.new.exe覆盖为Updater.exe并在成功后删除Updater.new.exe 3、最后启动Updater.exe 4、要求静默执行,不显示任何窗口
8 lines
199 B
TOML
8 lines
199 B
TOML
[package]
|
|
name = "BootLoader"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
windows = { version = "0.56", features = ["Win32_System_Console", "Win32_Foundation", "Win32_System_ProcessStatus"] }
|