This commit is contained in:
DavidXanatos 2022-05-28 17:51:34 +02:00
parent 74bcbc6c7a
commit 2b6dda05e4
2 changed files with 6 additions and 6 deletions

View File

@ -15,7 +15,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- fixed edge issue with windows 11 after KB5014019
- fixed issues with the new delete mechanism with "SeparateUserFolders=y"
- fixed credential issue [#1770](https://github.com/sandboxie-plus/Sandboxie/pull/1770)
- fixed force process priorities [#1883](https://github.com/sandboxie-plus/Sandboxie/issues/1883)

View File

@ -243,6 +243,11 @@ _FX BOX *Process_GetForcedStartBox(
box = Process_CheckForceFolder(
&boxes, ImagePath2, force_alert, &alert);
if ((! box) && (! alert)) {
box = Process_CheckForceProcess(
&boxes, ImageName, force_alert, &alert);
}
if ((! box) && CurDir && (! alert)) {
box = Process_CheckForceFolder(
&boxes, CurDir, force_alert, &alert);
@ -253,11 +258,6 @@ _FX BOX *Process_GetForcedStartBox(
&boxes, DocArg, force_alert, &alert);
}
if ((! box) && (! alert)) {
box = Process_CheckForceProcess(
&boxes, ImageName, force_alert, &alert);
}
if (box && Process_IsImmersiveProcess(
ProcessObject, ParentId, SessionId)) {
box = NULL;