disable windows service install/uninstall

This commit is contained in:
rustdesk 2023-06-06 01:51:04 +08:00
parent 14541fd182
commit 594ce024e7
3 changed files with 7 additions and 2 deletions

2
Cargo.lock generated
View File

@ -3301,7 +3301,7 @@ dependencies = [
"anyhow",
"apple-sys",
"cfg-if 1.0.0",
"core-foundation 0.9.3",
"core-foundation",
"shadow-rs",
"windows 0.48.0",
"winres",

View File

@ -1309,11 +1309,13 @@ pub fn add_recent_document(path: &str) {
}
pub fn is_installed() -> bool {
let (_, _, _, exe) = get_install_info();
std::fs::metadata(exe).is_ok()
/*
use windows_service::{
service::ServiceAccess,
service_manager::{ServiceManager, ServiceManagerAccess},
};
let (_, _, _, exe) = get_install_info();
if !std::fs::metadata(exe).is_ok() {
return false;
}
@ -1326,6 +1328,7 @@ pub fn is_installed() -> bool {
}
}
return false;
*/
}
pub fn get_reg(name: &str) -> String {

View File

@ -283,6 +283,7 @@ pub fn set_option(key: String, value: String) {
return;
}
}
/*
#[cfg(any(target_os = "windows"))]
{
if crate::platform::is_installed() {
@ -294,6 +295,7 @@ pub fn set_option(key: String, value: String) {
return;
}
}
*/
}
if value.is_empty() {
options.remove(&key);