1.1.1
This commit is contained in:
parent
74bcbc6c7a
commit
2b6dda05e4
|
@ -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)
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue