1.12.2
This commit is contained in:
parent
1fda969a1b
commit
671c43a9be
|
@ -14,6 +14,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||
- fixed issue with Microsoft Edge when using AutoDelete option [#post-3173507](https://www.wilderssecurity.com/threads/sandboxie-plus-v1-12-1-pre-release.452939/#post-3173507)
|
||||
- fixed warning issue `Acrobat.exe: SBIE2205 Service not implemented: CredEnumerateA` [#issuecomment-1826280016](https://github.com/sandboxie-plus/Sandboxie/issues/3441#issuecomment-1826280016)
|
||||
- fixed UNEXPECTED_KERNEL_MODE_TRAP BSOD when opening any web link from sandboxed Microsoft 365 app (e.g. Outlook, Word) [#3427](https://github.com/sandboxie-plus/Sandboxie/issues/3427)
|
||||
- fixed issue with force process warning message
|
||||
|
||||
|
||||
## [1.12.1 / 5.67.1] - 2023-11-23
|
||||
|
|
|
@ -287,9 +287,9 @@ bool COptionsWindow::CheckForcedItem(const QString& Value, int type)
|
|||
bDangerous = true;
|
||||
else if (Value.compare("taskmgr.exe", Qt::CaseInsensitive) == 0 || Value.compare(winPath + "\\system32\\taskmgr.exe", Qt::CaseInsensitive) == 0)
|
||||
bDangerous = true;
|
||||
else if (Value.contains("sbiesvc.exe", Qt::CaseInsensitive) == 0)
|
||||
else if (Value.contains("sbiesvc.exe", Qt::CaseInsensitive))
|
||||
bDangerous = true;
|
||||
else if (Value.contains("sandman.exe", Qt::CaseInsensitive) == 0)
|
||||
else if (Value.contains("sandman.exe", Qt::CaseInsensitive))
|
||||
bDangerous = true;
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue