5个版本
0.2.4 | 2023年10月11日 |
---|---|
0.2.3 | 2023年10月9日 |
0.1.2 |
|
在 Windows APIs 中排名 144
每月下载量 67 次
5KB
check_elevation
一个通过简单函数检查提升状态的工具。
是 is_elevated 的后继。
示例
use check_elevation::is_elevated;
fn main() {
if is_elevated().expect("Failed to get elevation status.") {
println!("Running as administrator.");
} else {
println!("Not running as administrator.");
}
}
依赖项
lib.rs
:
检查当前Windows进程是否提升权限。如果是,则返回true;否则返回false。
示例
use check_elevation::is_elevated;
fn main() {
if is_elevated().expect("Failed to get elevation status.") {
println!("Running as administrator.");
} else {
println!("Not running as administrator.");
}
}
由 h4rl 制作,使用 bsd-2-clause 许可证
依赖项
~129MB
~2M SLoC