We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 825fa20 commit a963901Copy full SHA for a963901
dsc/src/main.rs
@@ -186,7 +186,8 @@ Press any key to close this window
186
return;
187
};
188
189
- if parent_process.name().to_lowercase() == "winstore.app.exe" || parent_process.name().to_lowercase() == "explorer.exe"{
+ // MS Store runs app using `sihost.exe`
190
+ if parent_process.name().to_lowercase() == "sihost.exe" || parent_process.name().to_lowercase() == "explorer.exe"{
191
eprintln!("{message}");
192
// wait for keypress
193
let _ = io::stdin().read(&mut [0u8]).unwrap();
0 commit comments