This commit is contained in:
DavidXanatos 2023-03-12 17:49:20 +01:00
parent 66877739a1
commit d52210a3ee
2 changed files with 3 additions and 2 deletions

View File

@ -15,6 +15,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- fixed issue with finder search in tracelog
- fixed issue with NT namespace virtualization [#2701](https://github.com/sandboxie-plus/Sandboxie/issues/2701)
- fixed issue with run unsandboxed [#2710](https://github.com/sandboxie-plus/Sandboxie/issues/2710)
- fixed issue with new box wizard [#2729](https://github.com/sandboxie-plus/Sandboxie/issues/2729)

View File

@ -109,9 +109,9 @@ SB_STATUS CNewBoxWizard::TryToCreateBox()
pBox->SetBool("AutoRecover", true);
if (field("blockNetwork").toInt() == 1) // old style
pBox->InsertText("AllowNetworkAccess", "!<InternetAccess>,n");
else if (field("blockNetwork").toInt() == 2) // WFP
pBox->InsertText("ClosedFilePath", "!<InternetAccess>,InternetAccessDevices");
else if (field("blockNetwork").toInt() == 2) // WFP
pBox->InsertText("AllowNetworkAccess", "!<InternetAccess>,n");
pBox->SetBool("BlockNetworkFiles", !field("shareAccess").toBool());
if(field("fakeAdmin").toBool())