This commit is contained in:
rustdesk 2022-05-13 17:56:36 +08:00
parent 5352bb74c8
commit 0d9d00baba

View File

@ -781,13 +781,9 @@ fn get_default_install_info() -> (String, String, String, String) {
fn get_default_install_path() -> String {
let mut pf = "C:\\Program Files".to_owned();
if let Ok(output) = std::process::Command::new("echo")
.arg("%ProgramFiles%")
.output()
{
let tmp = String::from_utf8_lossy(&output.stdout);
if !tmp.starts_with("%") {
pf = tmp.to_string();
if let Ok(x) = std::env::var("ProgramFiles") {
if std::path::Path::new(&x).exists() {
pf = x;
}
}
#[cfg(target_pointer_width = "32")]
@ -1334,4 +1330,4 @@ pub fn get_win_key_state() -> bool {
pub fn quit_gui() {
unsafe { PostQuitMessage(0) };
}
}