fixes
This commit is contained in:
parent
a48747fa9b
commit
f446607876
|
@ -101,7 +101,7 @@ Filename: "{app}\KmdUtil.exe"; Parameters: "start SbieSvc"; StatusMsg: "KmdUtil
|
|||
|
||||
; Start the Sandman UI.
|
||||
;Filename: "{app}\SandMan.exe"; Parameters: "-autorun"; StatusMsg: "Launch SandMan UI..."; Flags: postinstall nowait; Check: not IsPortable
|
||||
Filename: "{app}\SandMan.exe"; Parameters: "-autorun"; StatusMsg: "Launch SandMan UI..."; Flags: nowait; Check: not IsPortable
|
||||
Filename: "{app}\SandMan.exe"; Parameters: "-autorun"; StatusMsg: "Launch SandMan UI..."; Flags: runasoriginaluser nowait; Check: not IsPortable
|
||||
|
||||
|
||||
[UninstallDelete]
|
||||
|
|
|
@ -115,11 +115,19 @@ void CSandBoxPlus::UpdateDetails()
|
|||
m_bINetBlocked = false;
|
||||
foreach(const QString& Entry, GetTextList("ClosedFilePath", false))
|
||||
{
|
||||
if (Entry.contains("InternetAccessDevices")) {
|
||||
if (Entry == "!<InternetAccess>,InternetAccessDevices") {
|
||||
m_bINetBlocked = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
foreach(const QString& Entry, GetTextList("AllowNetworkAccess", false))
|
||||
{
|
||||
if (Entry == "!<InternetAccess>,n") {
|
||||
m_bINetBlocked = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
m_bSharesAllowed = GetBool("BlockNetworkFiles", true) == false;
|
||||
|
||||
|
|
Loading…
Reference in New Issue