1.8.1
This commit is contained in:
parent
66877739a1
commit
d52210a3ee
|
@ -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)
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -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())
|
||||
|
|
Loading…
Reference in New Issue