This commit is contained in:
love-code-yeyixiao 2024-07-01 18:54:15 +08:00
commit 765a874cb7
30 changed files with 372 additions and 343 deletions

View File

@ -13,6 +13,9 @@ indent_size = 4
[my_version.h] [my_version.h]
charset = utf-8-bom charset = utf-8-bom
[SandboxiePlus/SandMan/Troubleshooting/lang_*.json]
charset = utf-8-bom
[*.{c,h,cpp}] [*.{c,h,cpp}]
indent_style = tab indent_style = tab
indent_size = unset indent_size = unset

View File

@ -7,7 +7,7 @@ jobs:
runs-on: windows-latest # action can only be run on Windows runs-on: windows-latest # action can only be run on Windows
steps: steps:
- name: Publish Sandboxie-Plus - name: Publish Sandboxie-Plus
uses: vedantmgoyal2009/winget-releaser@v2 uses: vedantmgoyal9/winget-releaser@main
with: with:
identifier: Sandboxie.Plus identifier: Sandboxie.Plus
installers-regex: "Sandboxie-Plus.*.exe$" installers-regex: "Sandboxie-Plus.*.exe$"
@ -23,7 +23,7 @@ jobs:
"CLASSIC_VER=$VERSION" >> $env:GITHUB_OUTPUT "CLASSIC_VER=$VERSION" >> $env:GITHUB_OUTPUT
shell: pwsh shell: pwsh
- name: Publish Sandboxie-Classic - name: Publish Sandboxie-Classic
uses: vedantmgoyal2009/winget-releaser@v2 uses: vedantmgoyal9/winget-releaser@main
with: with:
version: ${{ steps.get_version.outputs.CLASSIC_VER }} version: ${{ steps.get_version.outputs.CLASSIC_VER }}
identifier: Sandboxie.Classic identifier: Sandboxie.Classic

View File

@ -2,11 +2,19 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/). This project adheres to [Semantic Versioning](http://semver.org/).
## [1.14.x / 5.69.x] - 2024-xx-xx ## [1.14.3 / 5.69.3] - 2024-06-??
### Changed ### Changed
- changed Qt 5 version to Qt 5.15.14 with OpenSSL 3.3.1 [#3994](https://github.com/sandboxie-plus/Sandboxie/pull/3994) (thanks offhub) - changed Qt 5 version to Qt 5.15.14 with OpenSSL 3.3.1 [#3994](https://github.com/sandboxie-plus/Sandboxie/pull/3994) (thanks offhub)
### Fixed
- fixed Applications cannot be launched as admin in a sandbox with "UseCreateToken/SandboxieAllGroup" enabled when using an MSFT account [#4022](https://github.com/sandboxie-plus/Sandboxie/issues/4022)
- fixed Firefox issue with Sbie 1.14.1 and 1.14.2 [#4012](https://github.com/sandboxie-plus/Sandboxie/issues/4012)
- rolled back the driver verifier fix added in 1.14.1
- fixed CustomChromiumFlags and --single-argument issue [#4033](https://github.com/sandboxie-plus/Sandboxie/issues/4033)
- fixed Sandboxie programs do not terminate after closing programs that run as admin with UseCreateToken/SandboxieAllGroup enabled [#4030](https://github.com/sandboxie-plus/Sandboxie/issues/4030)
## [1.14.2 / 5.69.2] - 2024-06-19 ## [1.14.2 / 5.69.2] - 2024-06-19
@ -14,14 +22,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Added ### Added
- added SbieIni option to modify password-protected configs [#3903](https://github.com/sandboxie-plus/Sandboxie/issues/3903) - added SbieIni option to modify password-protected configs [#3903](https://github.com/sandboxie-plus/Sandboxie/issues/3903)
- usage: set|append|insert|delete [/passwd:********] <section> <setting> <value> - usage: set|append|insert|delete [/passwd:********] <section> <setting> <value>
- note: use /passwd without the password to have SbieIni prompot for the password on the console, this hides the password from view and from bing captured with the command line - Note: use /passwd without the password to have SbieIni prompot for the password on the console, this hides the password from view and from bing captured with the command line
- added checkbox for "PromptForInternetAccess" option to the New Box Wizard - added checkbox for "PromptForInternetAccess" option to the New Box Wizard
- added option "HideNonSystemProcesses" to hide processes not in a sandbox from processes lists for sandboxed processes. - added option "HideNonSystemProcesses" to hide processes not in a sandbox from processes lists for sandboxed processes
- added option "HideSbieProcesses" to hide Sandboxie Work Process(SbieSvc,SandboxieRpcSs,etc.). - added option "HideSbieProcesses" to hide Sandboxie Work Process (SbieSvc, SandboxieRpcSs, etc.)
- added option "HideFirmwareInfo" - added option "HideFirmwareInfo"
- when it is set, the programs that try getting fireware information will get false data from HKEY_CURRENT_USER\\SOFTWARE\\SandboxieHide\\FalseFirmwareValue - when it is set, the programs that try getting fireware information will get false data from HKEY_CURRENT_USER\\SOFTWARE\\SandboxieHide\\FalseFirmwareValue
- added template "BlockAccessWMI" to prevent sandboxed processes from accessing system information through WMI. - added template "BlockAccessWMI" to prevent sandboxed processes from accessing system information through WMI
- added template "BlockLocalConnect" to prevent sandboxed processes from sending network packs to localhost to breakout sandbox. - added template "BlockLocalConnect" to prevent sandboxed processes from sending network packs to localhost to breakout sandbox
- added new option "AllowCoverTaskbar" for [#3975](https://github.com/sandboxie-plus/Sandboxie/issues/3975) - added new option "AllowCoverTaskbar" for [#3975](https://github.com/sandboxie-plus/Sandboxie/issues/3975)
- added RPC Port message filter mechanism to block unsafe RDP calls via the driver [#3930](https://github.com/sandboxie-plus/Sandboxie/issues/3930) - added RPC Port message filter mechanism to block unsafe RDP calls via the driver [#3930](https://github.com/sandboxie-plus/Sandboxie/issues/3930)
- Usage: "RpcPortFilter=Port,ID,Label" label is optional - Usage: "RpcPortFilter=Port,ID,Label" label is optional
@ -31,7 +39,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- You can also use "Sandman.exe /add_force program_path" to do it. - You can also use "Sandman.exe /add_force program_path" to do it.
### Changed ### Changed
- Extend "Temp Template" to make it could delete local template section. - Extend "Temp Template" to make it could delete local template section
### Fixed ### Fixed
- fixed security issue with the newly introduced experimental "UseCreateToken=y" mechanism - fixed security issue with the newly introduced experimental "UseCreateToken=y" mechanism
@ -41,7 +49,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Sandboxie will add CustomChromiumFlags=--disable-features=PrintCompositorLPAC to chrome based browsers command line - Sandboxie will add CustomChromiumFlags=--disable-features=PrintCompositorLPAC to chrome based browsers command line
- Note: Less Privileged App Container (LPAC) don't work with sandboxie currently - Note: Less Privileged App Container (LPAC) don't work with sandboxie currently
- fixed Problem accessing a relative symlink with a target that starts with a dot [#3981](https://github.com/sandboxie-plus/Sandboxie/issues/3981) - fixed Problem accessing a relative symlink with a target that starts with a dot [#3981](https://github.com/sandboxie-plus/Sandboxie/issues/3981)
- fixed Bug - Can't open a sandbox's properties window via double-click in System Tray context window [#3861](https://github.com/sandboxie-plus/Sandboxie/issues/3861) - fixed Can't open a sandbox's properties window via double-click in System Tray context window [#3861](https://github.com/sandboxie-plus/Sandboxie/issues/3861)
- fixed Delay in launching forced programs after version 1.12.9 [#3868](https://github.com/sandboxie-plus/Sandboxie/issues/3868) - fixed Delay in launching forced programs after version 1.12.9 [#3868](https://github.com/sandboxie-plus/Sandboxie/issues/3868)
- this issue was introdiced in 1.13.0 and may have broadly affected other usecases and cause variosue problems - this issue was introdiced in 1.13.0 and may have broadly affected other usecases and cause variosue problems
- fixed issue with Misc Options list - fixed issue with Misc Options list

View File

@ -1,6 +1,6 @@
echo %* echo %*
IF "%~3" == "" ( set "ghSsl_repo=openssl" ) ELSE ( set "ghSsl_repo=%~3" ) IF "%~3" == "" ( set "ghSsl_repo=openssl-builds" ) ELSE ( set "ghSsl_repo=%~3" )
IF "%~2" == "" ( set "ghSsl_user=DavidXanatos" ) ELSE ( set "ghSsl_user=%~2" ) IF "%~2" == "" ( set "ghSsl_user=xanasoft" ) ELSE ( set "ghSsl_user=%~2" )
IF "%~1" == "" ( set "openssl_version=3.3.1" ) ELSE ( set "openssl_version=%~1" ) IF "%~1" == "" ( set "openssl_version=3.3.1" ) ELSE ( set "openssl_version=%~1" )
set "openssl_version_underscore=%openssl_version:.=_%" set "openssl_version_underscore=%openssl_version:.=_%"

View File

@ -100,7 +100,7 @@ If you find Sandboxie useful, then feel free to contribute through our [Contribu
- DavidBerdik - Maintainer of [Sandboxie Website Archive](https://github.com/Sandboxie-Website-Archive/sandboxie-website-archive.github.io) - DavidBerdik - Maintainer of [Sandboxie Website Archive](https://github.com/Sandboxie-Website-Archive/sandboxie-website-archive.github.io)
- Jackenmen - Maintainer of Chocolatey packages for Sandboxie ([support](https://github.com/Jackenmen/choco-auto/issues?q=is%3Aissue+Sandboxie)) - Jackenmen - Maintainer of Chocolatey packages for Sandboxie ([support](https://github.com/Jackenmen/choco-auto/issues?q=is%3Aissue+Sandboxie))
- vedantmgoyal2009 - Maintainer of Winget Releaser for Sandboxie ([support](https://github.com/vedantmgoyal2009/winget-releaser/issues?q=is%3Aissue+Sandboxie)) - vedantmgoyal9 - Maintainer of Winget Releaser for Sandboxie ([support](https://github.com/vedantmgoyal9/winget-releaser/issues?q=is%3Aissue+Sandboxie))
- blap - Maintainer of [SandboxToys2](https://github.com/blap/SandboxToys2) addon - blap - Maintainer of [SandboxToys2](https://github.com/blap/SandboxToys2) addon
- diversenok - Security analysis & PoCs / Security fixes - diversenok - Security analysis & PoCs / Security fixes
- TechLord - Team-IRA / Reversing - TechLord - Team-IRA / Reversing

View File

@ -112,12 +112,27 @@ _FX BOOLEAN Kernel_Init()
status = SbieApi_QueryConfAsIs(NULL, L"CustomChromiumFlags", 0, CustomChromiumFlags, ARRAYSIZE(CustomChromiumFlags)); status = SbieApi_QueryConfAsIs(NULL, L"CustomChromiumFlags", 0, CustomChromiumFlags, ARRAYSIZE(CustomChromiumFlags));
if (NT_SUCCESS(status)) { if (NT_SUCCESS(status)) {
const WCHAR* lpCommandLine = ProcessParms->CommandLine.Buffer;
const WCHAR* lpArguments = SbieDll_FindArgumentEnd(lpCommandLine);
if (lpArguments == NULL)
lpArguments = wcsrchr(lpCommandLine, L'\0');
Kernel_CommandLineW.MaximumLength = ProcessParms->CommandLine.MaximumLength + (CONF_LINE_LEN + 8) * sizeof(WCHAR); Kernel_CommandLineW.MaximumLength = ProcessParms->CommandLine.MaximumLength + (CONF_LINE_LEN + 8) * sizeof(WCHAR);
Kernel_CommandLineW.Buffer = LocalAlloc(LMEM_FIXED,Kernel_CommandLineW.MaximumLength); Kernel_CommandLineW.Buffer = LocalAlloc(LMEM_FIXED,Kernel_CommandLineW.MaximumLength);
wcscpy(Kernel_CommandLineW.Buffer, ProcessParms->CommandLine.Buffer);
if(Kernel_CommandLineW.Buffer[ProcessParms->CommandLine.Length/sizeof(WCHAR) - 1] != L' ') // copy argument 0
wmemcpy(Kernel_CommandLineW.Buffer, lpCommandLine, lpArguments - lpCommandLine);
Kernel_CommandLineW.Buffer[lpArguments - lpCommandLine] = 0;
// add custom arguments
if(Kernel_CommandLineW.Buffer[lpArguments - lpCommandLine - 1] != L' ')
wcscat(Kernel_CommandLineW.Buffer, L" "); wcscat(Kernel_CommandLineW.Buffer, L" ");
wcscat(Kernel_CommandLineW.Buffer, CustomChromiumFlags); wcscat(Kernel_CommandLineW.Buffer, CustomChromiumFlags);
// add remaining arguments
wcscat(Kernel_CommandLineW.Buffer, lpArguments);
Kernel_CommandLineW.Length = wcslen(Kernel_CommandLineW.Buffer) * sizeof(WCHAR); Kernel_CommandLineW.Length = wcslen(Kernel_CommandLineW.Buffer) * sizeof(WCHAR);
RtlUnicodeStringToAnsiString(&Kernel_CommandLineA, &Kernel_CommandLineW, TRUE); RtlUnicodeStringToAnsiString(&Kernel_CommandLineA, &Kernel_CommandLineW, TRUE);

View File

@ -1402,30 +1402,34 @@ _FX NTSTATUS Ipc_Api_DuplicateObject(PROCESS *proc, ULONG64 *parms)
} else if (IS_ARG_CURRENT_PROCESS(TargetProcessHandle)) { } else if (IS_ARG_CURRENT_PROCESS(TargetProcessHandle)) {
//
// we duplicate the handle into kernel space such that that user
// won't be able to grab it while we are evaluaiting it
//
HANDLE SourceProcessKernelHandle; HANDLE SourceProcessKernelHandle;
status = Thread_GetKernelHandleForUserHandle(&SourceProcessKernelHandle, SourceProcessHandle); status = Thread_GetKernelHandleForUserHandle(&SourceProcessKernelHandle, SourceProcessHandle);
if (NT_SUCCESS(status)) { if (NT_SUCCESS(status)) {
HANDLE TargetProcessKernelHandle = ZwCurrentProcess(); // TargetProcessHandle == NtCurrentProcess(); HANDLE TargetProcessKernelHandle = ZwCurrentProcess(); // TargetProcessHandle == NtCurrentProcess();
HANDLE SourceKernelHandle; //
status = Thread_GetKernelHandleForUserHandle(&SourceKernelHandle, SourceHandle); // driver verifier wants us to provide a kernel handle as process handles
// but the source handle must be a user handle and the ZwDuplicateObject
// function creates another user handle hence NtClose
//
status = ZwDuplicateObject(
SourceProcessKernelHandle, SourceHandle,
TargetProcessKernelHandle, &DuplicatedHandle,
DesiredAccess, HandleAttributes,
Options & ~DUPLICATE_CLOSE_SOURCE);
if (NT_SUCCESS(status)) { if (NT_SUCCESS(status)) {
status = ZwDuplicateObject( status = Ipc_CheckObjectName(DuplicatedHandle, UserMode);
SourceProcessKernelHandle, SourceHandle,
TargetProcessKernelHandle, &DuplicatedHandle,
DesiredAccess, HandleAttributes,
Options & ~DUPLICATE_CLOSE_SOURCE);
if (NT_SUCCESS(status)) { NtClose(DuplicatedHandle);
status = Ipc_CheckObjectName(DuplicatedHandle, UserMode);
NtClose(DuplicatedHandle);
}
ZwClose(SourceKernelHandle);
} }
ZwClose(SourceProcessKernelHandle); ZwClose(SourceProcessKernelHandle);
@ -1440,40 +1444,30 @@ _FX NTSTATUS Ipc_Api_DuplicateObject(PROCESS *proc, ULONG64 *parms)
if (NT_SUCCESS(status)) { if (NT_SUCCESS(status)) {
HANDLE SourceProcessKernelHandle = ZwCurrentProcess(); HANDLE SourceProcessKernelHandle = (HANDLE)-1;
HANDLE TargetProcessKernelHandle = (HANDLE)-1;
if (!IS_ARG_CURRENT_PROCESS(SourceProcessHandle)) if (!IS_ARG_CURRENT_PROCESS(SourceProcessHandle))
status = Thread_GetKernelHandleForUserHandle(&SourceProcessKernelHandle, SourceProcessHandle); status = Thread_GetKernelHandleForUserHandle(&SourceProcessKernelHandle, SourceProcessHandle);
if (NT_SUCCESS(status)) { if (NT_SUCCESS(status)) {
HANDLE TargetProcessKernelHandle = ZwCurrentProcess();
if (!IS_ARG_CURRENT_PROCESS(TargetProcessHandle)) if (!IS_ARG_CURRENT_PROCESS(TargetProcessHandle))
status = Thread_GetKernelHandleForUserHandle(&TargetProcessKernelHandle, TargetProcessHandle); status = Thread_GetKernelHandleForUserHandle(&TargetProcessKernelHandle, TargetProcessHandle);
if (NT_SUCCESS(status)) { if (NT_SUCCESS(status)) {
HANDLE SourceKernelHandle; status = ZwDuplicateObject(
status = Thread_GetKernelHandleForUserHandle(&SourceKernelHandle, SourceHandle); SourceProcessKernelHandle, SourceHandle,
if (NT_SUCCESS(status)) { TargetProcessKernelHandle, &DuplicatedHandle,
DesiredAccess, HandleAttributes, Options);
status = ZwDuplicateObject( *TargetHandle = DuplicatedHandle;
SourceProcessKernelHandle, SourceKernelHandle,
TargetProcessKernelHandle, &DuplicatedHandle,
DesiredAccess, HandleAttributes, Options & ~DUPLICATE_CLOSE_SOURCE);
if (Options & DUPLICATE_CLOSE_SOURCE)
NtClose(SourceHandle);
*TargetHandle = DuplicatedHandle;
ZwClose(SourceKernelHandle);
}
if (!IS_ARG_CURRENT_PROCESS(TargetProcessKernelHandle))
ZwClose(TargetProcessKernelHandle);
} }
if (!IS_ARG_CURRENT_PROCESS(SourceProcessKernelHandle))
ZwClose(SourceProcessKernelHandle);
} }
if (SourceProcessKernelHandle && !IS_ARG_CURRENT_PROCESS(SourceProcessKernelHandle))
ZwClose(SourceProcessKernelHandle);
if (TargetProcessKernelHandle && !IS_ARG_CURRENT_PROCESS(TargetProcessKernelHandle))
ZwClose(TargetProcessKernelHandle);
} }
// //

View File

@ -2181,9 +2181,9 @@ _FX void* Token_CreateToken(void* TokenObject, PROCESS* proc)
PTOKEN_DEFAULT_DACL LocalDefaultDacl = NULL; PTOKEN_DEFAULT_DACL LocalDefaultDacl = NULL;
PTOKEN_SOURCE LocalSource = NULL; PTOKEN_SOURCE LocalSource = NULL;
PTOKEN_DEFAULT_DACL NewDefaultDacl = NULL; //PTOKEN_DEFAULT_DACL NewDefaultDacl = NULL;
ULONG DefaultDacl_Length = 0; //ULONG DefaultDacl_Length = 0;
PACL NewDacl = NULL; //PACL NewDacl = NULL;
TOKEN_TYPE TokenType = TokenPrimary; TOKEN_TYPE TokenType = TokenPrimary;
@ -2193,6 +2193,12 @@ _FX void* Token_CreateToken(void* TokenObject, PROCESS* proc)
OBJECT_ATTRIBUTES ObjectAttributes; OBJECT_ATTRIBUTES ObjectAttributes;
SECURITY_QUALITY_OF_SERVICE SecurityQos; SECURITY_QUALITY_OF_SERVICE SecurityQos;
TOKEN_PRIVILEGES AllowedPrivilege;
AllowedPrivilege.PrivilegeCount = 1;
AllowedPrivilege.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED | SE_PRIVILEGE_ENABLED_BY_DEFAULT;
AllowedPrivilege.Privileges[0].Luid.HighPart = 0;
AllowedPrivilege.Privileges[0].Luid.LowPart = SE_CHANGE_NOTIFY_PRIVILEGE;
// //
// Gather information from the original token // Gather information from the original token
// //
@ -2290,6 +2296,15 @@ _FX void* Token_CreateToken(void* TokenObject, PROCESS* proc)
RtlCopyMemory(&LocalGroups->Groups[1], OldLocalGroups->Groups, OldLocalGroups->GroupCount * sizeof(SID_AND_ATTRIBUTES)); RtlCopyMemory(&LocalGroups->Groups[1], OldLocalGroups->Groups, OldLocalGroups->GroupCount * sizeof(SID_AND_ATTRIBUTES));
LocalGroups->GroupCount = NewGroupCount; LocalGroups->GroupCount = NewGroupCount;
} }
/*for (ULONG i = 0; i < LocalPrivileges->PrivilegeCount; ++i) {
LUID_AND_ATTRIBUTES *entry_i = &LocalPrivileges->Privileges[i];
DbgPrint("Priv: %d-%d (0x%x)\n", entry_i->Luid.HighPart, entry_i->Luid.LowPart, entry_i->Attributes);
}*/
if (LocalPrivileges) ExFreePool((PVOID)LocalPrivileges);
LocalPrivileges = &AllowedPrivilege;
} }
// //
@ -2318,13 +2333,7 @@ _FX void* Token_CreateToken(void* TokenObject, PROCESS* proc)
memcpy(LocalUser->User.Sid, proc->SandboxieLogonSid, RtlLengthSid(proc->SandboxieLogonSid)); memcpy(LocalUser->User.Sid, proc->SandboxieLogonSid, RtlLengthSid(proc->SandboxieLogonSid));
} }
//UNICODE_STRING unicodeString; retry:
//status = RtlConvertSidToUnicodeString(&unicodeString, LocalUser->User.Sid, TRUE);
//if (NT_SUCCESS(status)) {
// DbgPrint("SID: %wZ\n", &unicodeString);
// RtlFreeUnicodeString(&unicodeString);
//}
status = SbieCreateToken( status = SbieCreateToken(
&TokenHandle, &TokenHandle,
TOKEN_ALL_ACCESS, TOKEN_ALL_ACCESS,
@ -2335,7 +2344,7 @@ _FX void* Token_CreateToken(void* TokenObject, PROCESS* proc)
LocalUser, LocalUser,
LocalGroups, LocalGroups,
LocalPrivileges, LocalPrivileges,
0, //UserAttributes, 0, //UserAttributes,
0, //DeviceAttributes, 0, //DeviceAttributes,
0, //DeviceGroups, 0, //DeviceGroups,
@ -2347,114 +2356,72 @@ _FX void* Token_CreateToken(void* TokenObject, PROCESS* proc)
LocalSource LocalSource
); );
// if (proc->SandboxieLogonSid && status == STATUS_INVALID_PRIMARY_GROUP && LocalPrimaryGroup->PrimaryGroup != LocalUser->User.Sid)
// For online accounts we must change the primary group
//
if (proc->SandboxieLogonSid && status == STATUS_INVALID_PRIMARY_GROUP)
{ {
//
// For online accounts we must change the primary group
//
ExFreePool((PVOID)LocalPrimaryGroup); ExFreePool((PVOID)LocalPrimaryGroup);
LocalPrimaryGroup = (PTOKEN_PRIMARY_GROUP)ExAllocatePoolWithTag(PagedPool, sizeof(PTOKEN_PRIMARY_GROUP), tzuk); LocalPrimaryGroup = (PTOKEN_PRIMARY_GROUP)ExAllocatePoolWithTag(PagedPool, sizeof(PTOKEN_PRIMARY_GROUP), tzuk);
LocalPrimaryGroup->PrimaryGroup = LocalUser->User.Sid; LocalPrimaryGroup->PrimaryGroup = LocalUser->User.Sid;
status = SbieCreateToken( goto retry;
&TokenHandle,
TOKEN_ALL_ACCESS,
&ObjectAttributes,
TokenType,
&AuthenticationId,
&ExpirationTime,
LocalUser,
LocalGroups,
LocalPrivileges,
0, //UserAttributes,
0, //DeviceAttributes,
0, //DeviceGroups,
MandatoryPolicy,
LocalOwner,
LocalPrimaryGroup,
NewDefaultDacl,
LocalSource
);
} }
else if (proc->SandboxieLogonSid && status == STATUS_INVALID_OWNER && LocalOwner->Owner != LocalUser->User.Sid)
if (NT_SUCCESS(status))
status = Thread_GetKernelHandleForUserHandle(&KernelTokenHandle, TokenHandle);
//
// Retry with new DACLs on error
//
if (proc->SandboxieLogonSid && status == STATUS_INVALID_OWNER)
{ {
DefaultDacl_Length = LocalDefaultDacl->DefaultDacl->AclSize; //
// Retry with new DACLs on error
// Construct a new ACL //
NewDefaultDacl = (PTOKEN_DEFAULT_DACL)ExAllocatePoolWithTag(PagedPool, sizeof(TOKEN_DEFAULT_DACL) + 8 + DefaultDacl_Length + 128, tzuk);
if (NULL == NewDefaultDacl)
{
Log_Status_Ex_Process(MSG_1222, 0xA2, status, NULL, proc->box->session_id, proc->pid);
goto finish;
}
memcpy(NewDefaultDacl, LocalDefaultDacl, DefaultDacl_Length);
NewDefaultDacl->DefaultDacl = NewDacl = (PACL)((ULONG_PTR)NewDefaultDacl + sizeof(TOKEN_DEFAULT_DACL));
NewDefaultDacl->DefaultDacl->AclSize += 128;
ExFreePool((PVOID)LocalOwner); ExFreePool((PVOID)LocalOwner);
LocalOwner = (PTOKEN_OWNER)ExAllocatePoolWithTag(PagedPool, sizeof(TOKEN_OWNER), tzuk); LocalOwner = (PTOKEN_OWNER)ExAllocatePoolWithTag(PagedPool, sizeof(TOKEN_OWNER), tzuk);
LocalOwner->Owner = LocalUser->User.Sid; LocalOwner->Owner = LocalUser->User.Sid;
RtlAddAccessAllowedAce(NewDacl, ACL_REVISION2, GENERIC_ALL, LocalOwner->Owner);
status = SbieCreateToken( //DefaultDacl_Length = LocalDefaultDacl->DefaultDacl->AclSize;
&TokenHandle,
TOKEN_ALL_ACCESS,
&ObjectAttributes,
TokenType,
&AuthenticationId,
&ExpirationTime,
LocalUser,
LocalGroups,
LocalPrivileges,
0, //UserAttributes, //// Construct a new ACL
0, //DeviceAttributes, //NewDefaultDacl = (PTOKEN_DEFAULT_DACL)ExAllocatePoolWithTag(PagedPool, sizeof(TOKEN_DEFAULT_DACL) + 8 + DefaultDacl_Length + 128, tzuk);
0, //DeviceGroups, //memcpy(NewDefaultDacl, LocalDefaultDacl, DefaultDacl_Length);
MandatoryPolicy,
LocalOwner, //NewDefaultDacl->DefaultDacl = NewDacl = (PACL)((ULONG_PTR)NewDefaultDacl + sizeof(TOKEN_DEFAULT_DACL));
LocalPrimaryGroup, //NewDefaultDacl->DefaultDacl->AclSize += 128;
NewDefaultDacl,
LocalSource
);
if (NT_SUCCESS(status)) //RtlAddAccessAllowedAce(NewDacl, ACL_REVISION2, GENERIC_ALL, LocalOwner->Owner);
status = Thread_GetKernelHandleForUserHandle(&KernelTokenHandle, TokenHandle);
if (!NT_SUCCESS(status))
{
Log_Status_Ex_Process(MSG_1222, 0xA3, status, NULL, proc->box->session_id, proc->pid);
goto finish;
}
Token_SetHandleDacl(NtCurrentProcess(), NewDacl); goto retry;
Token_SetHandleDacl(NtCurrentThread(), NewDacl);
Token_SetHandleDacl(KernelTokenHandle, NewDacl);
} }
if (!NT_SUCCESS(status))
{
Log_Status_Ex_Process(MSG_1222, 0xA3, status, NULL, proc->box->session_id, proc->pid);
goto finish;
}
if (NT_SUCCESS(status))
status = Thread_GetKernelHandleForUserHandle(&KernelTokenHandle, TokenHandle);
//if (NT_SUCCESS(status) && NewDacl)
//{
// Token_SetHandleDacl(NtCurrentProcess(), NewDacl);
// Token_SetHandleDacl(NtCurrentThread(), NewDacl);
// Token_SetHandleDacl(KernelTokenHandle, NewDacl);
//}
if (NT_SUCCESS(status))
{
ULONG virtualizationAllowed = 1;
status = ZwSetInformationToken(KernelTokenHandle, TokenVirtualizationAllowed, &virtualizationAllowed, sizeof(ULONG));
}
if (!NT_SUCCESS(status)) if (!NT_SUCCESS(status))
{ {
Log_Status_Ex_Process(MSG_1222, 0xA4, status, NULL, proc->box->session_id, proc->pid); Log_Status_Ex_Process(MSG_1222, 0xA4, status, NULL, proc->box->session_id, proc->pid);
goto finish; goto finish;
} }
ULONG virtualizationAllowed = 1;
status = ZwSetInformationToken(KernelTokenHandle, TokenVirtualizationAllowed, &virtualizationAllowed, sizeof(ULONG));
if (Conf_Get_Boolean(proc->box->name, L"CopyTokenAttributes", 0, FALSE)) if (Conf_Get_Boolean(proc->box->name, L"CopyTokenAttributes", 0, FALSE))
{ {
HANDLE OldTokenHandle; HANDLE OldTokenHandle;
@ -2490,11 +2457,38 @@ _FX void* Token_CreateToken(void* TokenObject, PROCESS* proc)
finish: finish:
if (KernelTokenHandle) ZwClose(KernelTokenHandle); if (KernelTokenHandle) ZwClose(KernelTokenHandle);
//UNICODE_STRING unicodeString;
//DbgPrint("Create Token: 0x%08x\n", status);
//if (NT_SUCCESS(RtlConvertSidToUnicodeString(&unicodeString, LocalUser->User.Sid, TRUE))) {
// DbgPrint("LocalUser: %wZ (0x%x)\n", &unicodeString, LocalUser->User.Attributes);
// RtlFreeUnicodeString(&unicodeString);
//}
//for (ULONG i = 0; i < LocalGroups->GroupCount; i++) {
// if (NT_SUCCESS(RtlConvertSidToUnicodeString(&unicodeString, LocalGroups->Groups[i].Sid, TRUE))) {
// DbgPrint("LocalGroups[%d]: %wZ (0x%x)\n", i, &unicodeString, LocalGroups->Groups[i].Attributes);
// RtlFreeUnicodeString(&unicodeString);
// }
//}
//if (NT_SUCCESS(RtlConvertSidToUnicodeString(&unicodeString, LocalOwner->Owner, TRUE))) {
// DbgPrint("LocalOwner: %wZ\n", &unicodeString);
// RtlFreeUnicodeString(&unicodeString);
//}
//if (NT_SUCCESS(RtlConvertSidToUnicodeString(&unicodeString, LocalPrimaryGroup->PrimaryGroup, TRUE))) {
// DbgPrint("LocalPrimaryGroup: %wZ\n", &unicodeString);
// RtlFreeUnicodeString(&unicodeString);
//}
//DbgPrint("+++\n");
if (LocalStatistics) ExFreePool((PVOID)LocalStatistics); if (LocalStatistics) ExFreePool((PVOID)LocalStatistics);
if (LocalUser) ExFreePool((PVOID)LocalUser); if (LocalUser) ExFreePool((PVOID)LocalUser);
if (LocalGroups) ExFreePool((PVOID)LocalGroups); if (LocalGroups) ExFreePool((PVOID)LocalGroups);
if (OldLocalGroups) ExFreePool((PVOID)OldLocalGroups); if (OldLocalGroups) ExFreePool((PVOID)OldLocalGroups);
if (LocalPrivileges) ExFreePool((PVOID)LocalPrivileges); if (LocalPrivileges && LocalPrivileges != &AllowedPrivilege) ExFreePool((PVOID)LocalPrivileges);
//if (UserAttributes) ExFreePool((PVOID)UserAttributes); //if (UserAttributes) ExFreePool((PVOID)UserAttributes);
//if (DeviceAttributes) ExFreePool((PVOID)DeviceAttributes); //if (DeviceAttributes) ExFreePool((PVOID)DeviceAttributes);
@ -2506,7 +2500,7 @@ finish:
if (LocalDefaultDacl) ExFreePool((PVOID)LocalDefaultDacl); if (LocalDefaultDacl) ExFreePool((PVOID)LocalDefaultDacl);
if (LocalSource) ExFreePool((PVOID)LocalSource); if (LocalSource) ExFreePool((PVOID)LocalSource);
if (NewDefaultDacl) ExFreePool((PVOID)NewDefaultDacl); //if (NewDefaultDacl) ExFreePool((PVOID)NewDefaultDacl);
// //
// get the actual token object from the handle // get the actual token object from the handle

View File

@ -2,10 +2,10 @@
"Description Text...": "Beschreibungstext...", "Description Text...": "Beschreibungstext...",
"Fix current issues": "Aktuelle Probleme beheben", "Fix current issues": "Aktuelle Probleme beheben",
"Fix issues with sandboxing": "Sandboxprobleme beheben", "Fix issues with sandboxing": "Sandboxprobleme beheben",
"An Application does not work properly when sandboxed": "Eine Anwendung funktioniert nicht richtig", "An Application does not work properly when sandboxed": "Eine Anwendung funktioniert in der Sandbox nicht richtig",
"Issues with a web browser": "Probleme mit einem Webbrowser beheben", "Issues with a web browser": "Probleme mit einem Webbrowser",
"Perform Sandbox maintenance": "Sandboxwartung durchführen", "Perform Sandbox maintenance": "Sandboxwartung durchführen",
"Fix issues with the UI or Shell": "Problemen mit der Benutzeroberfläche beheben", "Fix issues with the UI or Shell": "Problemen mit der Benutzeroberfläche oder Menüintegration beheben",
"Yes": "Ja", "Yes": "Ja",
"No": "Nein", "No": "Nein",
@ -16,7 +16,7 @@
"Loaded %1 templates": "%1 Vorlagen geladen", "Loaded %1 templates": "%1 Vorlagen geladen",
"Browser shortcut is missing from the desktop": "Browser-Verknüpfung fehlt auf dem Desktop", "Browser shortcut is missing from the desktop": "Browser-Verknüpfung fehlt auf dem Desktop",
"This procedure will add a browser shortcut to the desktop": "Dieser Vorgang wird eine Browser-Verknüpfung zum Desktop hinzufügen", "This procedure will add a browser shortcut to the desktop": "Dieser Vorgang wird eine Browser-Verknüpfung auf dem Desktop hinzufügen",
"Default Browser": "Standardbrowser", "Default Browser": "Standardbrowser",
"Another": "Ein anderer", "Another": "Ein anderer",
"Select Browser": "Browser auswählen", "Select Browser": "Browser auswählen",
@ -31,84 +31,84 @@
"Install legacy shell extensions": "Legacy-Menüerweiterungen installieren", "Install legacy shell extensions": "Legacy-Menüerweiterungen installieren",
"Select which shell options should be reinstalled": "Wählen Sie aus, welche Menüoptionen neu installiert werden sollen", "Select which shell options should be reinstalled": "Wählen Sie aus, welche Menüoptionen neu installiert werden sollen",
"Low FPS in sandboxed games": "Low FPS in sandboxed games", "Low FPS in sandboxed games": "Niedrige Bildrate (FPS) in sandgeboxten Spielen",
"This procedure will optimize the box settings for gaming": "This procedure will optimize the box settings for gaming", "This procedure will optimize the box settings for gaming": "Dieser Vorgang wird die Boxeinstellungen für Spiele optimieren",
"Select which box to optimize.": "Select which box to optimize.", "Select which box to optimize.": "Wählen Sie aus, welche Box optimiert werden soll.",
"To apply recommended settings press NEXT. \n": "To apply recommended settings press NEXT. \n", "To apply recommended settings press NEXT. \n": "Um die empfohlenen Einstellungen anzuwenden, drücken Sie auf WEITER. \n",
"The options has been applied please tryout your game in %1 and indicate if the issue has been resolved.": "The options has been applied please tryout your game in %1 and indicate if the issue has been resolved.", "The options has been applied please tryout your game in %1 and indicate if the issue has been resolved.": "Die Optionen wurden angewendet. Bitte probieren Sie Ihr Spiel in %1 aus und geben Sie an, ob das Problem behoben wurde.",
"FPS optimization not successful": "FPS optimization not successful", "FPS optimization not successful": "Optimierung der Bildrate (FPS) war nicht erfolgreich",
"Failed to install application into a sandbox": "Fehler beim Installieren der Anwendung in einer Sandbox", "Failed to install application into a sandbox": "Fehler beim Installieren einer Anwendung in eine Sandbox",
"It helps troubleshoot issues related to installing applications in the sandbox": "It helps troubleshoot issues related to installing applications in the sandbox", "It helps troubleshoot issues related to installing applications in the sandbox": "Es hilft bei der Behebung von Problemen im Zusammenhang mit dem Installieren von Anwendungen in der Sandbox",
"Enter Installer Path": "Installerpfad eingeben", "Enter Installer Path": "Installerpfad eingeben",
"Select a sandbox to install into": "Wählen Sie eine Sandbox zur Installation aus", "Select a sandbox to install into": "Wählen Sie eine Sandbox zur Installation aus",
"This box has DropAdminRights enabled, preventing execution of installers. Do you want to disable this restriction, that will reduce the security level.": "In dieser Box ist Adminrechte abgeben aktiviert, was die Ausführung von Installern verhindert. Möchten Sie diese Einschränkung deaktivieren, was das Sicherheitsniveau senken wird?", "This box has DropAdminRights enabled, preventing execution of installers. Do you want to disable this restriction, that will reduce the security level.": "In dieser Box ist Adminrechte abgeben aktiviert, was die Ausführung von Installern verhindert. Möchten Sie diese Einschränkung deaktivieren, was den Sicherheitslevel reduziert wird?",
"Disable DropAdminRights": "Adminrechte abgeben deaktivieren", "Disable DropAdminRights": "Adminrechte abgeben deaktivieren",
"Enable FakeAdminRights": "Adminrechte abgeben aktivieren", "Enable FakeAdminRights": "Adminrechte abgeben aktivieren",
"running installer, pid: %1 press NEXT once it finishes to continue": "Installer wird ausgeführt, PID: %1 drücken Sie auf WEITER, sobald dieser fertig ist, um fortzufahren", "running installer, pid: %1 press NEXT once it finishes to continue": "Installer wird ausgeführt, PID: %1, drücken Sie auf WEITER, sobald dieser fertig ist, um fortzufahren",
"Was the issue resolved?": "Wurde das Problem behoben?", "Was the issue resolved?": "Wurde das Problem behoben?",
"no mitigation worked": "no mitigation worked", "no mitigation worked": "Keine Problementschärfung hat funktioniert",
"Webcam or Sound does not work when sandboxed": "Webcam oder Ton funktioniert nicht in einer Sandbox", "Webcam or Sound does not work when sandboxed": "Webcam oder Ton funktioniert nicht in einer Sandbox",
"It helps troubleshoot webcam and audio issues in the sandbox": "It helps troubleshoot webcam and audio issues in the sandbox", "It helps troubleshoot webcam and audio issues in the sandbox": "Es hilft bei der Behebung von Webcam- und Audioproblemen in der Sandbox",
"To enable webcam support on Windows 11, the isolation level must be reduced. \nIf you want to proceed, please press NEXT and select a sandbox to modify. \n": "Um die Webcam-Unterstützung unter Windows 11 zu aktivieren, muss das Isolationsniveau reduziert werden. \nWenn Sie fortfahren möchten, drücken Sie bitte auf WEITER und wählen eine Sandbox zur Modifikation aus. \n", "To enable webcam support on Windows 11, the isolation level must be reduced. \nIf you want to proceed, please press NEXT and select a sandbox to modify. \n": "Um die Webcam-Unterstützung unter Windows 11 zu aktivieren, muss der Isolationslevel reduziert werden. \nWenn Sie fortfahren möchten, drücken Sie bitte auf WEITER und wählen eine Sandbox zur Modifikation aus. \n",
"Select which box to turn into a reduced isolation app compartment box.": "Wählen Sie, welche Box in eine Applikationsunterteilungsbox mit reduzierter Isolation umgewandelt werden soll.", "Select which box to turn into a reduced isolation app compartment box.": "Wählen Sie aus, welche Box in eine Applikationsunterteilungsbox mit reduzierter Isolation umgewandelt werden soll.",
"The mitigation has been applied please try out the web cam in %1 and indicate if the issue has been resolved.": "Die Umwandlung wurde durchgeführt, bitte testen Sie die Webcam in %1 und geben Sie an, ob das Problem behoben wurde.", "The mitigation has been applied please try out the web cam in %1 and indicate if the issue has been resolved.": "Die Problementschärfung wurde angewandt, bitte probieren Sie die Webcam in %1 aus und geben Sie an, ob das Problem behoben wurde.",
"Webcam mitigation not successful": "Webcam mitigation not successful", "Webcam mitigation not successful": "Problementschärfung für Webcam war nicht erfolgreich",
"Select affected sandbox": "Betroffene Sandbox auswählen", "Select affected sandbox": "Betroffene Sandbox auswählen",
"Enter Process Name": "Prozessname eingeben", "Enter Process Name": "Prozessname eingeben",
"SBIE1307: Program cannot access the Internet due to restrictions": "SBIE1307: Program cannot access the Internet due to restrictions", "SBIE1307: Program cannot access the Internet due to restrictions": "SBIE1307: Programm kann aufgrund von Beschränkungen nicht auf das Internet zugreifen",
"Program cannot access the Internet due to restrictions": "Program cannot access the Internet due to restrictions", "Program cannot access the Internet due to restrictions": "Programm kann aufgrund von Beschränkungen nicht auf das Internet zugreifen",
"Internet Access restrictions are in effect for the sandbox in which the program is running. The program is prohibited from accessing the Internet.": "Für die Sandbox, in der das Programm ausgeführt wird, gelten Internetzugriffsbeschränkungen. Dem Programm ist der Zugriff auf das Internet untersagt.", "Internet Access restrictions are in effect for the sandbox in which the program is running. The program is prohibited from accessing the Internet.": "Für die Sandbox, in der das Programm ausgeführt wird, gelten Internetzugriffsbeschränkungen. Dem Programm ist der Zugriff auf das Internet untersagt.",
"SBIE1308: Program cannot start due to restrictions": "SBIE1308: Program cannot start due to restrictions", "SBIE1308: Program cannot start due to restrictions": "SBIE1308: Programm kann aufgrund von Beschränkungen nicht gestartet werden",
"Program cannot start due to restrictions": "Program cannot start due to restrictions", "Program cannot start due to restrictions": "Programm kann aufgrund von Beschränkungen nicht gestartet werden",
"Start/Run restrictions are in effect for the sandbox in which the program is running. The program is prohibited from starting or running.": "Für die Sandbox, in der das Programm ausgeführt wird, gelten Start-/Ausführungsbeschränkungen. Das Programm darf nicht gestartet oder ausgeführt werden.", "Start/Run restrictions are in effect for the sandbox in which the program is running. The program is prohibited from starting or running.": "Für die Sandbox, in der das Programm ausgeführt wird, gelten Start-/Ausführungsbeschränkungen. Das Programm darf nicht gestartet oder ausgeführt werden.",
"SBIE2102: File is too large to copy into sandbox": "SBIE2102: File is too large to copy into sandbox", "SBIE2102: File is too large to copy into sandbox": "SBIE2102: Die Datei ist zu groß, um sie in die Sandbox zu kopieren",
"File is too large to copy into sandbox": "File is too large to copy into sandbox", "File is too large to copy into sandbox": "Die Datei ist zu groß, um sie in die Sandbox zu kopieren",
"SBIE2113: File is too large to copy into sandbox, creating empty file": "SBIE2113: File is too large to copy into sandbox, creating empty file", "SBIE2113: File is too large to copy into sandbox, creating empty file": "SBIE2113: Die Datei ist zu groß, um sie in die Sandbox zu kopieren, erzeuge leere Datei",
"File is too large to copy into sandbox, creating empty file": "File is too large to copy into sandbox, creating empty file", "File is too large to copy into sandbox, creating empty file": "Die Datei ist zu groß, um sie in die Sandbox zu kopieren, erzeuge leere Datei",
"SBIE2114: File is too large to copy into sandbox, denying access": "SBIE2114: File is too large to copy into sandbox, denying access", "SBIE2114: File is too large to copy into sandbox, denying access": "SBIE2114: Die Datei ist zu groß, um sie in die Sandbox zu kopieren, verweigere Zugriff",
"File is too large to copy into sandbox, denying access": "File is too large to copy into sandbox, denying access", "File is too large to copy into sandbox, denying access": "Die Datei ist zu groß, um sie in die Sandbox zu kopieren, verweigere Zugriff",
"SBIE2115: File is too large to copy into sandbox, opening in read only": "SBIE2115: File is too large to copy into sandbox, opening in read only", "SBIE2115: File is too large to copy into sandbox, opening in read only": "SBIE2115: Die Datei ist zu groß, um sie in die Sandbox zu kopieren, öffne Datei nur schreibgeschützt",
"File is too large to copy into sandbox, opening in read only": "File is too large to copy into sandbox, opening in read only", "File is too large to copy into sandbox, opening in read only": "Die Datei ist zu groß, um sie in die Sandbox zu kopieren, öffne Datei nur schreibgeschützt",
"SBIE2181: Failed to load SbieDll.dll": "SBIE2181: Failed to load SbieDll.dll", "SBIE2181: Failed to load SbieDll.dll": "SBIE2181: SbieDll.dll konnte nicht geladen werden",
"Fix the DACLs of Sandboxie's home folder": "Fix the DACLs of Sandboxie's home folder", "Fix the DACLs of Sandboxie's home folder": "Reparieren der DACLs des Sandboxie-Ordners",
"Failures to load SbieDll.dll when encountered by Chrome, or another software employing app containers, it is often caused by invalid DACL entries for the Sandboxie home directory. This mitigation measure will fix them, for this reason it will prompt for admin privileges which need to be granted for kmdutil.exe.": "Wenn Chrome oder eine andere Software, die App-Container verwendet, die Datei SbieDll.dll nicht laden kann, wird dies häufig durch ungültige DACL-Einträge für das Sandboxie-Verzeichnis verursacht. Diese Maßnahme wird die DACL-Einträge beheben. Aus diesem Grund wird sie Adminrechte anfordern, die für kmdutil.exe gewährt werden müssen.", "Failures to load SbieDll.dll when encountered by Chrome, or another software employing app containers, it is often caused by invalid DACL entries for the Sandboxie home directory. This mitigation measure will fix them, for this reason it will prompt for admin privileges which need to be granted for kmdutil.exe.": "Wenn Chrome oder eine andere Software, die App-Container verwendet, die Datei SbieDll.dll nicht laden kann, wird dies häufig durch ungültige DACL-Einträge für das Sandboxie-Verzeichnis verursacht. Diese Problementschärfungsmaßnahme wird die DACL-Einträge reparieren. Aus diesem Grund wird sie Adminrechte anfordern, die für kmdutil.exe gewährt werden müssen.",
"The DACLs have been adjusted, please try to run your application again and indicate if the issue has been resolved.": "Die DACLs wurden angepasst. Bitte versuchen Sie, Ihre Anwendung erneut auszuführen und geben Sie an, ob das Problem behoben wurde.", "The DACLs have been adjusted, please try to run your application again and indicate if the issue has been resolved.": "Die DACLs wurden angepasst. Bitte versuchen Sie, Ihre Anwendung erneut auszuführen und geben Sie an, ob das Problem behoben wurde.",
"DACLs fix did not resolve the issue": "Korrektur der DACLs hat das Problem nicht behoben", "DACLs fix did not resolve the issue": "Reparatur der DACLs hat das Problem nicht behoben",
"SBIE2204: Cannot start a specific sandboxed service": "SBIE2204: Cannot start a specific sandboxed service", "SBIE2204: Cannot start a specific sandboxed service": "SBIE2204: Kann einen bestimmten sandgeboxten Dienst nicht starten",
"Sandboxie failed to start a service in the sandbox": "Sandboxie failed to start a service in the sandbox", "Sandboxie failed to start a service in the sandbox": "Sandboxie konnte einen Dienst in der Sandbox nicht starten",
"The message indicates that Sandboxie was unable to start one of the helper programs SandboxieRpcSs or SandboxieDcomLaunch. The name noted in the message can be rpcss or dcomlaunch.\n\nYou can submit an issue report on the next page to help us to analyze the issue.": "Die Nachricht zeigt an, dass Sandboxie nicht in der Lage war, eines der Hilfsprogramme SandboxieRpcSs oder SandboxieDcomLaunch zu starten. Der in der Nachricht angegebene Name kann rpcss oder dcomlaunch sein.\n\nAuf der nächsten Seite können Sie einen Problembericht einreichen, um uns bei der Analyse des Problems zu helfen.", "The message indicates that Sandboxie was unable to start one of the helper programs SandboxieRpcSs or SandboxieDcomLaunch. The name noted in the message can be rpcss or dcomlaunch.\n\nYou can submit an issue report on the next page to help us to analyze the issue.": "Die Nachricht zeigt an, dass Sandboxie nicht in der Lage war, eines der Hilfsprogramme SandboxieRpcSs oder SandboxieDcomLaunch zu starten. Der in der Nachricht angegebene Name kann rpcss oder dcomlaunch sein.\n\nAuf der nächsten Seite können Sie einen Problembericht einreichen, um uns bei der Analyse des Problems zu helfen.",
"SBIE2313: Could not execute specific process": "SBIE2313: Could not execute specific process", "SBIE2313: Could not execute specific process": "SBIE2313: Konnte bestimmten Prozess nicht ausführen",
"Sandboxie failed to start a process in the sandbox": "Sandboxie failed to start a process in the sandbox", "Sandboxie failed to start a process in the sandbox": "Sandboxie konnte einen Prozess in der Sandbox nicht starten",
"Sandboxie was not able to execute one of its own programs. Check access permissions to the Sandboxie installation folder and/or reinstall Sandboxie.\n\nPossible Causes:\n1. Sandboxie was configured to block access to the folder containing its program files.\n2. A third-party (HIPS) security software was configured to block the execution of the program mentioned in the message.\n\nYou can submit an issue report on the next page to help us to analyze the issue.": "Sandboxie war nicht in der Lage, eines seiner eigenen Programme auszuführen. Überprüfen Sie die Zugriffsrechte auf den Sandboxie-Installationsordner und/oder installieren Sie Sandboxie neu.\n\nMögliche Ursachen:\n1. Sandboxie wurde so konfiguriert, dass der Zugriff auf den Ordner mit seinen Programmdateien blockiert wird.\n2. Eine Sicherheitssoftware eines Drittanbieters (HIPS) wurde so konfiguriert, dass sie die Ausführung des in der Nachricht genannten Programms blockiert.\n\nAuf der nächsten Seite können Sie einen Problembericht einreichen, um uns bei der Analyse des Problems zu helfen.", "Sandboxie was not able to execute one of its own programs. Check access permissions to the Sandboxie installation folder and/or reinstall Sandboxie.\n\nPossible Causes:\n1. Sandboxie was configured to block access to the folder containing its program files.\n2. A third-party (HIPS) security software was configured to block the execution of the program mentioned in the message.\n\nYou can submit an issue report on the next page to help us to analyze the issue.": "Sandboxie war nicht in der Lage, eines seiner eigenen Programme auszuführen. Überprüfen Sie die Zugriffsrechte auf den Sandboxie-Installationsordner und/oder installieren Sie Sandboxie neu.\n\nMögliche Ursachen:\n1. Sandboxie wurde so konfiguriert, dass der Zugriff auf den Ordner mit seinen Programmdateien blockiert wird.\n2. Eine Sicherheitssoftware eines Drittanbieters (HIPS) wurde so konfiguriert, dass sie die Ausführung des in der Nachricht genannten Programms blockiert.\n\nAuf der nächsten Seite können Sie einen Problembericht einreichen, um uns bei der Analyse des Problems zu helfen.",
"open config": "open config", "open config": "Konfiguration öffnen",
"opens box config on a given page": "opens box config on a given page", "opens box config on a given page": "Öffnet die Boxkonfiguration auf einer bestimmten Seite",
"Do you want to open the box option dialog to change this preset?": "Möchten Sie das Dialogfeld mit den Boxoptionen öffnen, um diese Voreinstellung zu ändern?", "Do you want to open the box option dialog to change this preset?": "Möchten Sie den Boxoptionendialog öffnen, um diese Voreinstellung zu ändern?",
"No, it is fine as it is": "Nein, es ist gut so, wie es ist", "No, it is fine as it is": "Nein, es ist gut so, wie es ist",
"No, but I want to report a bug": "Nein, aber ich möchte einen Fehler melden", "No, but I want to report a bug": "Nein, aber ich möchte einen Fehler melden",
"SBIE 2113/2114/2115 and 2102": "SBIE 2113/2114/2115 and 2102", "SBIE 2113/2114/2115 and 2102": "SBIE 2113/2114/2115 and 2102",
"handle migration error messages": "handle migration error messages", "handle migration error messages": "Migrationsfehlernachrichten behandeln",
"The message %1 is caused by the file migration limit being reached.": "Die Nachricht %1 wird dadurch verursacht, dass das Limit für die Dateimigration erreicht wurde.", "The message %1 is caused by the file migration limit being reached.": "Die Nachricht %1 wird dadurch verursacht, dass das Limit für die Dateimigration erreicht wurde.",
"fix parental controls breaking sandboxie": "fix parental controls breaking sandboxie", "fix parental controls breaking sandboxie": "Kindersicherungsprobleme von Sandboxie beheben",
"stops AppId driver and AppIdSvc service and disables the offending policy file": "stops AppId driver and AppIdSvc service and disables the offending policy file", "stops AppId driver and AppIdSvc service and disables the offending policy file": "Stoppt den AppId-Treiber und den AppIdSvc-Dienst und deaktiviert die problemverursachende Richtliniendatei",
"It seems you are using a non-administrative user account on a system with enabled parental controls, this is known to be incompatible with Sandboxie.\nYou have the following options to resolve the issue.": "Es scheint, dass Sie ein nicht-administratives Benutzerkonto auf einem System mit aktivierter Kindersicherung verwenden, das bekanntermaßen nicht mit Sandboxie kompatibel ist.\nSie haben folgende Möglichkeiten, das Problem zu lösen.", "It seems you are using a non-administrative user account on a system with enabled parental controls, this is known to be incompatible with Sandboxie.\nYou have the following options to resolve the issue.": "Es scheint, dass Sie ein nicht-administratives Benutzerkonto auf einem System mit aktivierter Kindersicherung verwenden, das bekanntermaßen nicht mit Sandboxie kompatibel ist.\nSie haben folgende Möglichkeiten, das Problem zu lösen.",
"SBIEMSG, I'm getting a cryptic SBIExxxx message": "SBIEMSG, I'm getting a cryptic SBIExxxx message", "SBIEMSG, I'm getting a cryptic SBIExxxx message": "SBIEMSG, ich erhalte eine kryptische SBIExxxx Nachricht",
"Handle all sbie messages...": "Handle all sbie messages...", "Handle all sbie messages...": "Alle SBIE Nachrichten behandeln...",
"Sbie Message Code": "SBIE Nachrichten-Code", "Sbie Message Code": "SBIE Nachrichten-Code",
"Name affected process": "Name des betroffenen Prozesses", "Name affected process": "Name des betroffenen Prozesses",
"Please enter the SBIEMSG ID you have encountered.": "Bitte geben Sie die SBIE Nachrichten-ID ein, auf die Sie gestoßen sind.", "Please enter the SBIEMSG ID you have encountered.": "Bitte geben Sie die SBIE Nachrichten-ID ein, auf die Sie gestoßen sind.",

View File

@ -1786,7 +1786,7 @@ void CSbieView::OnDoubleClicked(const CSandBoxPtr &pBox)
if (!pBox->IsEnabled()) if (!pBox->IsEnabled())
{ {
if (QMessageBox("Sandboxie-Plus", tr("This sandbox is disabled, do you want to enable it?"), QMessageBox::Question, QMessageBox::Yes, QMessageBox::No | QMessageBox::Default | QMessageBox::Escape, QMessageBox::NoButton, this).exec() != QMessageBox::Yes) if (QMessageBox("Sandboxie-Plus", tr("This sandbox is disabled or restricted to a group/user, do you want to edit it?"), QMessageBox::Question, QMessageBox::Yes, QMessageBox::No | QMessageBox::Default | QMessageBox::Escape, QMessageBox::NoButton, this).exec() != QMessageBox::Yes)
return; return;
pBox->SetText("Enabled", "y"); pBox->SetText("Enabled", "y");
return; return;

View File

@ -1124,7 +1124,7 @@ Sie können %USER% verwenden, um für jeden Benutzer die Sandbox in einem eigene
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="746"/> <location filename="Wizards/NewBoxWizard.cpp" line="746"/>
<source>Prompt user whether to allow an exemption from the blockade</source> <source>Prompt user whether to allow an exemption from the blockade</source>
<translation type="unfinished"></translation> <translation>Den Nutzer fragen, ob er eine Ausnahme von dieser Blockade erlauben will</translation>
</message> </message>
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="752"/> <location filename="Wizards/NewBoxWizard.cpp" line="752"/>
@ -4966,8 +4966,8 @@ This file is part of Sandboxie and all change done to it will be reverted next t
</message> </message>
<message> <message>
<location filename="Views/SbieView.cpp" line="1789"/> <location filename="Views/SbieView.cpp" line="1789"/>
<source>This sandbox is disabled, do you want to enable it?</source> <source>This sandbox is disabled or restricted to a group/user, do you want to edit it?</source>
<translation>Diese Sandbox ist deaktiviert. Möchten Sie diese aktivieren?</translation> <translation>Diese Sandbox ist deaktiviert oder auf andere Gruppen/Benutzer beschränkt. Möchten Sie die Sandbox bearbeiten?</translation>
</message> </message>
<message> <message>
<location filename="Views/SbieView.cpp" line="549"/> <location filename="Views/SbieView.cpp" line="549"/>
@ -7318,33 +7318,33 @@ an Stelle von &quot;*&quot;.</translation>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="1711"/> <location filename="Forms/OptionsWindow.ui" line="1711"/>
<source>Limit restrictions</source> <source>Limit restrictions</source>
<translation type="unfinished"></translation> <translation>Limit-Beschränkungen</translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="1629"/> <location filename="Forms/OptionsWindow.ui" line="1629"/>
<location filename="Forms/OptionsWindow.ui" line="1636"/> <location filename="Forms/OptionsWindow.ui" line="1636"/>
<source>Leave it blank to disable the setting(Unit:KB)</source> <source>Leave it blank to disable the setting(Unit:KB)</source>
<translation type="unfinished"></translation> <translation>Leer lassen, um die Einstellung zu deaktivieren (Einheit: KB)</translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="1643"/> <location filename="Forms/OptionsWindow.ui" line="1643"/>
<source>Leave it blank to disable the setting</source> <source>Leave it blank to disable the setting</source>
<translation type="unfinished"></translation> <translation>Leer lassen, um die Einstellung zu deaktivieren</translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="1585"/> <location filename="Forms/OptionsWindow.ui" line="1585"/>
<source>Total Processes Number Limit:</source> <source>Total Processes Number Limit:</source>
<translation type="unfinished"></translation> <translation>Limit Gesamtzahl an Prozessen:</translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="1615"/> <location filename="Forms/OptionsWindow.ui" line="1615"/>
<source>Total Processes Memory Limit:</source> <source>Total Processes Memory Limit:</source>
<translation type="unfinished"></translation> <translation>Speicherlimit aller Prozesse zusammen:</translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="1622"/> <location filename="Forms/OptionsWindow.ui" line="1622"/>
<source>Single Process Memory Limit:</source> <source>Single Process Memory Limit:</source>
<translation type="unfinished"></translation> <translation>Speicherlimit einzelner Prozess:</translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="4522"/> <location filename="Forms/OptionsWindow.ui" line="4522"/>
@ -7354,19 +7354,17 @@ an Stelle von &quot;*&quot;.</translation>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="4711"/> <location filename="Forms/OptionsWindow.ui" line="4711"/>
<source>Don&apos;t allow sandboxed processes to see processes running outside any boxes</source> <source>Don&apos;t allow sandboxed processes to see processes running outside any boxes</source>
<translation type="unfinished"></translation> <translation>Nicht erlauben, dass sandgeboxte Prozesse die Prozesse außerhalb der Boxen sehen können</translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="4718"/> <location filename="Forms/OptionsWindow.ui" line="4718"/>
<source>Prevent sandboxed processes from accessing system details through WMI</source> <source>Prevent sandboxed processes from accessing system details through WMI</source>
<oldsource>Prevent sandboxed processes from accessing system deatils through WMI</oldsource> <translation>Hindere sandgeboxte Prozesse daran, über WMI auf Systemdetails zuzugreifen</translation>
<translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="4759"/> <location filename="Forms/OptionsWindow.ui" line="4759"/>
<source>Some programs retrieve system details via WMI (Windows Management Instrumentation), a built-in Windows database, rather than using conventional methods. For instance, &apos;tasklist.exe&apos; can access a complete list of processes even if &apos;HideOtherBoxes&apos; is enabled. Enable this option to prevent such behavior.</source> <source>Some programs retrieve system details via WMI (Windows Management Instrumentation), a built-in Windows database, rather than using conventional methods. For instance, &apos;tasklist.exe&apos; can access a complete list of processes even if &apos;HideOtherBoxes&apos; is enabled. Enable this option to prevent such behavior.</source>
<oldsource>Some programs read system deatils through WMI(A Windows built-in database) instead of normal ways. For example,&quot;tasklist.exe&quot; could get full processes list even if &quot;HideOtherBoxes&quot; is opened through accessing WMI. Enable this option to stop these heavior.</oldsource> <translation>Einige Programme rufen Systemdetails über WMI (Windows Management Instrumentation), eine integrierte Windows-Datenbank, ab, anstatt herkömmliche Methoden zu verwenden. Zum Beispiel kann &apos;tasklist.exe&apos; auf eine komplette Liste von Prozessen zugreifen, auch wenn &apos;HideOtherBoxes&apos; aktiviert ist. Aktivieren Sie diese Option, um ein solches Verhalten zu verhindern.</translation>
<translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="4860"/> <location filename="Forms/OptionsWindow.ui" line="4860"/>
@ -7645,8 +7643,7 @@ Dies wird gemacht um bösartige Prozesse in einer Sandbox daran zu hindern, eine
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="811"/> <location filename="Forms/OptionsWindow.ui" line="811"/>
<source>Allow sandboxed windows to cover the taskbar</source> <source>Allow sandboxed windows to cover the taskbar</source>
<oldsource>Allow sandboxed windows to cover taskbar</oldsource> <translation>Erlaube sandgeboxten Fenstern die Taskleiste zu verdecken</translation>
<translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="855"/> <location filename="Forms/OptionsWindow.ui" line="855"/>
@ -7661,7 +7658,7 @@ Dies wird gemacht um bösartige Prozesse in einer Sandbox daran zu hindern, eine
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="1577"/> <location filename="Forms/OptionsWindow.ui" line="1577"/>
<source>Job Object</source> <source>Job Object</source>
<translation type="unfinished"></translation> <translation>Job-Objekt</translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="2135"/> <location filename="Forms/OptionsWindow.ui" line="2135"/>
@ -7848,7 +7845,7 @@ Um einen Prozess anzugeben verwenden Sie &apos;$:program.exe&apos; als Pfad.</tr
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="1650"/> <location filename="Forms/OptionsWindow.ui" line="1650"/>
<source>Allow use of nested job objects (works on Windows 8 and later)</source> <source>Allow use of nested job objects (works on Windows 8 and later)</source>
<translation>Erlaube Verwendung von verschachtelten Jobobjekten (funktioniert ab Windows 8 und neuer)</translation> <translation>Erlaube Verwendung von verschachtelten Job-Objekten (funktioniert ab Windows 8 und neuer)</translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="887"/> <location filename="Forms/OptionsWindow.ui" line="887"/>

View File

@ -5107,8 +5107,9 @@ This file is part of Sandboxie and all changed done to it will be reverted next
</message> </message>
<message> <message>
<location filename="Views/SbieView.cpp" line="1789"/> <location filename="Views/SbieView.cpp" line="1789"/>
<source>This sandbox is disabled, do you want to enable it?</source> <source>This sandbox is disabled or restricted to a group/user, do you want to edit it?</source>
<translation></translation> <oldsource>This sandbox is disabled, do you want to enable it?</oldsource>
<translation type="unfinished"></translation>
</message> </message>
</context> </context>
<context> <context>

View File

@ -5694,8 +5694,9 @@ NO seleccionará: %2</translation>
</message> </message>
<message> <message>
<location filename="Views/SbieView.cpp" line="1789"/> <location filename="Views/SbieView.cpp" line="1789"/>
<source>This sandbox is disabled, do you want to enable it?</source> <source>This sandbox is disabled or restricted to a group/user, do you want to edit it?</source>
<translation>Esta sandbox esta deshabilitada, ¿desea habilitarla?</translation> <oldsource>This sandbox is disabled, do you want to enable it?</oldsource>
<translation type="unfinished">Esta sandbox esta deshabilitada, ¿desea habilitarla?</translation>
</message> </message>
</context> </context>
<context> <context>

View File

@ -5787,8 +5787,9 @@ Remarque : La recherche de mise à jour est souvent en retard par rapport à la
</message> </message>
<message> <message>
<location filename="Views/SbieView.cpp" line="1789"/> <location filename="Views/SbieView.cpp" line="1789"/>
<source>This sandbox is disabled, do you want to enable it?</source> <source>This sandbox is disabled or restricted to a group/user, do you want to edit it?</source>
<translation>Ce bac à sable est désactivé, voulez-vous l&apos;activer ?</translation> <oldsource>This sandbox is disabled, do you want to enable it?</oldsource>
<translation type="unfinished">Ce bac à sable est désactivé, voulez-vous l&apos;activer ?</translation>
</message> </message>
</context> </context>
<context> <context>

View File

@ -5323,8 +5323,9 @@ Ez a fájl a Sandboxie része, és minden rajta végzett módosítás vissza les
</message> </message>
<message> <message>
<location filename="Views/SbieView.cpp" line="1789"/> <location filename="Views/SbieView.cpp" line="1789"/>
<source>This sandbox is disabled, do you want to enable it?</source> <source>This sandbox is disabled or restricted to a group/user, do you want to edit it?</source>
<translation>Ez a homokozó le van tiltva. Bekapcsolja?</translation> <oldsource>This sandbox is disabled, do you want to enable it?</oldsource>
<translation type="unfinished">Ez a homokozó le van tiltva. Bekapcsolja?</translation>
</message> </message>
</context> </context>
<context> <context>

View File

@ -5379,8 +5379,9 @@ Questo file fa parte di Sandboxie e tutte le modifiche apportate ad esso saranno
</message> </message>
<message> <message>
<location filename="Views/SbieView.cpp" line="1789"/> <location filename="Views/SbieView.cpp" line="1789"/>
<source>This sandbox is disabled, do you want to enable it?</source> <source>This sandbox is disabled or restricted to a group/user, do you want to edit it?</source>
<translation>Quest&apos;area virtuale è disattivata, vuoi attivarla?</translation> <oldsource>This sandbox is disabled, do you want to enable it?</oldsource>
<translation type="unfinished">Quest&apos;area virtuale è disattivata, vuoi attivarla?</translation>
</message> </message>
</context> </context>
<context> <context>

View File

@ -5041,7 +5041,8 @@ This file is part of Sandboxie and all change done to it will be reverted next t
</message> </message>
<message> <message>
<location filename="Views/SbieView.cpp" line="1789"/> <location filename="Views/SbieView.cpp" line="1789"/>
<source>This sandbox is disabled, do you want to enable it?</source> <source>This sandbox is disabled or restricted to a group/user, do you want to edit it?</source>
<oldsource>This sandbox is disabled, do you want to enable it?</oldsource>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
</context> </context>

View File

@ -5552,8 +5552,9 @@ This file is part of Sandboxie and all changed done to it will be reverted next
</message> </message>
<message> <message>
<location filename="Views/SbieView.cpp" line="1789"/> <location filename="Views/SbieView.cpp" line="1789"/>
<source>This sandbox is disabled, do you want to enable it?</source> <source>This sandbox is disabled or restricted to a group/user, do you want to edit it?</source>
<translation> . ?</translation> <oldsource>This sandbox is disabled, do you want to enable it?</oldsource>
<translation type="unfinished"> . ?</translation>
</message> </message>
</context> </context>
<context> <context>

View File

@ -5438,8 +5438,9 @@ This file is part of Sandboxie and all changed done to it will be reverted next
</message> </message>
<message> <message>
<location filename="Views/SbieView.cpp" line="1789"/> <location filename="Views/SbieView.cpp" line="1789"/>
<source>This sandbox is disabled, do you want to enable it?</source> <source>This sandbox is disabled or restricted to a group/user, do you want to edit it?</source>
<translation>Deze sandbox is uitgeschakeld. Wilt u hem inschakelen?</translation> <oldsource>This sandbox is disabled, do you want to enable it?</oldsource>
<translation type="unfinished">Deze sandbox is uitgeschakeld. Wilt u hem inschakelen?</translation>
</message> </message>
</context> </context>
<context> <context>

View File

@ -5653,8 +5653,9 @@ Uwaga: Sprawdzanie aktualizacji często pomija najnowsze wydania GitHub, aby zap
</message> </message>
<message> <message>
<location filename="Views/SbieView.cpp" line="1789"/> <location filename="Views/SbieView.cpp" line="1789"/>
<source>This sandbox is disabled, do you want to enable it?</source> <source>This sandbox is disabled or restricted to a group/user, do you want to edit it?</source>
<translation>Ta piaskownica jest wyłączona, czy chcesz teraz włączyć?</translation> <oldsource>This sandbox is disabled, do you want to enable it?</oldsource>
<translation type="unfinished">Ta piaskownica jest wyłączona, czy chcesz teraz włączyć?</translation>
</message> </message>
</context> </context>
<context> <context>

View File

@ -5655,8 +5655,9 @@ Não vou escolher: %2</translation>
</message> </message>
<message> <message>
<location filename="Views/SbieView.cpp" line="1789"/> <location filename="Views/SbieView.cpp" line="1789"/>
<source>This sandbox is disabled, do you want to enable it?</source> <source>This sandbox is disabled or restricted to a group/user, do you want to edit it?</source>
<translation>Essa caixa está desativada, deseja ativá-la?</translation> <oldsource>This sandbox is disabled, do you want to enable it?</oldsource>
<translation type="unfinished">Essa caixa está desativada, deseja ativá-la?</translation>
</message> </message>
</context> </context>
<context> <context>

View File

@ -5659,8 +5659,9 @@ Não vou definir: %2</translation>
</message> </message>
<message> <message>
<location filename="Views/SbieView.cpp" line="1789"/> <location filename="Views/SbieView.cpp" line="1789"/>
<source>This sandbox is disabled, do you want to enable it?</source> <source>This sandbox is disabled or restricted to a group/user, do you want to edit it?</source>
<translation>Esta caixa está desativada, deseja ativá-la?</translation> <oldsource>This sandbox is disabled, do you want to enable it?</oldsource>
<translation type="unfinished">Esta caixa está desativada, deseja ativá-la?</translation>
</message> </message>
</context> </context>
<context> <context>

View File

@ -5098,8 +5098,9 @@ This file is part of Sandboxie and all change done to it will be reverted next t
</message> </message>
<message> <message>
<location filename="Views/SbieView.cpp" line="1789"/> <location filename="Views/SbieView.cpp" line="1789"/>
<source>This sandbox is disabled, do you want to enable it?</source> <source>This sandbox is disabled or restricted to a group/user, do you want to edit it?</source>
<translation>Эта песочница отключена, вы хотите ее включить?</translation> <oldsource>This sandbox is disabled, do you want to enable it?</oldsource>
<translation type="unfinished">Эта песочница отключена, вы хотите ее включить?</translation>
</message> </message>
</context> </context>
<context> <context>

View File

@ -5700,8 +5700,9 @@ Notera: Uppdateringskollen är ofta bakom senaste GitHub-utgivningen för att s
</message> </message>
<message> <message>
<location filename="Views/SbieView.cpp" line="1789"/> <location filename="Views/SbieView.cpp" line="1789"/>
<source>This sandbox is disabled, do you want to enable it?</source> <source>This sandbox is disabled or restricted to a group/user, do you want to edit it?</source>
<translation>Denna sandlåda är inaktiverad, vill du aktivera den?</translation> <oldsource>This sandbox is disabled, do you want to enable it?</oldsource>
<translation type="unfinished">Denna sandlåda är inaktiverad, vill du aktivera den?</translation>
</message> </message>
<message> <message>
<location filename="Views/SbieView.cpp" line="174"/> <location filename="Views/SbieView.cpp" line="174"/>

View File

@ -4724,8 +4724,9 @@ Lütfen Sandboxie için bir güncelleme olup olmadığını kontrol edin.</trans
</message> </message>
<message> <message>
<location filename="Views/SbieView.cpp" line="1789"/> <location filename="Views/SbieView.cpp" line="1789"/>
<source>This sandbox is disabled, do you want to enable it?</source> <source>This sandbox is disabled or restricted to a group/user, do you want to edit it?</source>
<translation>Bu alan devre dışı, etkinleştirmek istiyor musunuz?</translation> <oldsource>This sandbox is disabled, do you want to enable it?</oldsource>
<translation type="unfinished">Bu alan devre dışı, etkinleştirmek istiyor musunuz?</translation>
</message> </message>
<message> <message>
<location filename="Views/SbieView.cpp" line="1263"/> <location filename="Views/SbieView.cpp" line="1263"/>

View File

@ -5402,8 +5402,9 @@ This file is part of Sandboxie and all changed done to it will be reverted next
</message> </message>
<message> <message>
<location filename="Views/SbieView.cpp" line="1789"/> <location filename="Views/SbieView.cpp" line="1789"/>
<source>This sandbox is disabled, do you want to enable it?</source> <source>This sandbox is disabled or restricted to a group/user, do you want to edit it?</source>
<translation>Ця пісочниця вимкнена, ви хочете її увімкнути?</translation> <oldsource>This sandbox is disabled, do you want to enable it?</oldsource>
<translation type="unfinished">Ця пісочниця вимкнена, ви хочете її увімкнути?</translation>
</message> </message>
</context> </context>
<context> <context>

View File

@ -5312,8 +5312,9 @@ This file is part of Sandboxie and all changed done to it will be reverted next
</message> </message>
<message> <message>
<location filename="Views/SbieView.cpp" line="1789"/> <location filename="Views/SbieView.cpp" line="1789"/>
<source>This sandbox is disabled, do you want to enable it?</source> <source>This sandbox is disabled or restricted to a group/user, do you want to edit it?</source>
<translation>Sandbox này bị hiệu hóa, bạn muốn bật không?</translation> <oldsource>This sandbox is disabled, do you want to enable it?</oldsource>
<translation type="unfinished">Sandbox này bị hiệu hóa, bạn muốn bật không?</translation>
</message> </message>
</context> </context>
<context> <context>

View File

@ -269,7 +269,7 @@
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="881"/> <location filename="Wizards/NewBoxWizard.cpp" line="881"/>
<source>Prevent sandboxed windows from being captured</source> <source>Prevent sandboxed windows from being captured</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="882"/> <location filename="Wizards/NewBoxWizard.cpp" line="882"/>
@ -462,7 +462,8 @@ To disable this template for a sandbox, simply uncheck it in the template list.<
<message> <message>
<location filename="Windows/BoxImageWindow.cpp" line="37"/> <location filename="Windows/BoxImageWindow.cpp" line="37"/>
<source>Creating new box image, please enter a secure password, and choose a disk image size.</source> <source>Creating new box image, please enter a secure password, and choose a disk image size.</source>
<translation></translation> <translation>
</translation>
</message> </message>
<message> <message>
<location filename="Windows/BoxImageWindow.cpp" line="41"/> <location filename="Windows/BoxImageWindow.cpp" line="41"/>
@ -510,7 +511,7 @@ This length permits approximately 384 bits of entropy with a passphrase composed
increases to 512 bits with the application of Leet (L337) speak modifications, and exceeds 768 bits when composed of entirely random printable ASCII characters.</source> increases to 512 bits with the application of Leet (L337) speak modifications, and exceeds 768 bits when composed of entirely random printable ASCII characters.</source>
<translation> 128 <translation> 128
384 384
使 Leet(L337) 512 ASCII 768 </translation> 使 Leet(L337) 512 ASCII 768 </translation>
</message> </message>
<message> <message>
<location filename="Windows/BoxImageWindow.cpp" line="164"/> <location filename="Windows/BoxImageWindow.cpp" line="164"/>
@ -634,12 +635,12 @@ While the level of isolation is reduced compared to other box types, it offers i
Access to the virtual disk when mounted is restricted to programs running within the sandbox. Sandboxie prevents other processes on the host system from accessing the sandboxed processes. Access to the virtual disk when mounted is restricted to programs running within the sandbox. Sandboxie prevents other processes on the host system from accessing the sandboxed processes.
This ensures the utmost level of privacy and data protection within the confidential sandbox environment.</source> This ensures the utmost level of privacy and data protection within the confidential sandbox environment.</source>
<translation>使 <translation>使
访访</translation> 访访</translation>
</message> </message>
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="441"/> <location filename="Wizards/NewBoxWizard.cpp" line="441"/>
<source>Hardened Sandbox with Data Protection</source> <source>Hardened Sandbox with Data Protection</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="442"/> <location filename="Wizards/NewBoxWizard.cpp" line="442"/>
@ -649,7 +650,7 @@ This ensures the utmost level of privacy and data protection within the confiden
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="443"/> <location filename="Wizards/NewBoxWizard.cpp" line="443"/>
<source>Sandbox with Data Protection</source> <source>Sandbox with Data Protection</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="444"/> <location filename="Wizards/NewBoxWizard.cpp" line="444"/>
@ -659,7 +660,7 @@ This ensures the utmost level of privacy and data protection within the confiden
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="446"/> <location filename="Wizards/NewBoxWizard.cpp" line="446"/>
<source>Application Compartment with Data Protection</source> <source>Application Compartment with Data Protection</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="447"/> <location filename="Wizards/NewBoxWizard.cpp" line="447"/>
@ -812,7 +813,7 @@ Please browse to the correct user profile directory.</source>
Note: you need to run the browser unsandboxed for them to get created. Note: you need to run the browser unsandboxed for them to get created.
Please browse to the correct user profile directory.</oldsource> Please browse to the correct user profile directory.</oldsource>
<translation> <translation>
使便使 使便使
</translation> </translation>
</message> </message>
<message> <message>
@ -1317,7 +1318,7 @@ You can use %USER% to save each users sandbox to an own fodler.</oldsource>
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="746"/> <location filename="Wizards/NewBoxWizard.cpp" line="746"/>
<source>Prompt user whether to allow an exemption from the blockade</source> <source>Prompt user whether to allow an exemption from the blockade</source>
<translation type="unfinished"></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="752"/> <location filename="Wizards/NewBoxWizard.cpp" line="752"/>
@ -1327,7 +1328,7 @@ You can use %USER% to save each users sandbox to an own fodler.</oldsource>
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="756"/> <location filename="Wizards/NewBoxWizard.cpp" line="756"/>
<source>Drop rights from Administrators and Power Users groups</source> <source>Drop rights from Administrators and Power Users groups</source>
<translation> Power Users </translation> <translation> Power Users Windows Vista Windows </translation>
</message> </message>
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="762"/> <location filename="Wizards/NewBoxWizard.cpp" line="762"/>
@ -1337,7 +1338,7 @@ You can use %USER% to save each users sandbox to an own fodler.</oldsource>
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="767"/> <location filename="Wizards/NewBoxWizard.cpp" line="767"/>
<source>Allow MSIServer to run with a sandboxed system token</source> <source>Allow MSIServer to run with a sandboxed system token</source>
<translation> MSIServer 使</translation> <translation> MSIServer 使</translation>
</message> </message>
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="774"/> <location filename="Wizards/NewBoxWizard.cpp" line="774"/>
@ -1449,7 +1450,7 @@ You can use %USER% to save each users sandbox to an own fodler.</oldsource>
<location filename="Wizards/NewBoxWizard.cpp" line="76"/> <location filename="Wizards/NewBoxWizard.cpp" line="76"/>
<source>This sandbox content will be placed in an encrypted container file, please note that any corruption of the container&apos;s header will render all its content permanently inaccessible. Corruption can occur as a result of a BSOD, a storage hardware failure, or a malicious application overwriting random files. This feature is provided under a strict &lt;b&gt;No Backup No Mercy&lt;/b&gt; policy, YOU the user are responsible for the data you put into an encrypted box. &lt;br /&gt;&lt;br /&gt;IF YOU AGREE TO TAKE FULL RESPONSIBILITY FOR YOUR DATA PRESS [YES], OTHERWISE PRESS [NO].</source> <source>This sandbox content will be placed in an encrypted container file, please note that any corruption of the container&apos;s header will render all its content permanently inaccessible. Corruption can occur as a result of a BSOD, a storage hardware failure, or a malicious application overwriting random files. This feature is provided under a strict &lt;b&gt;No Backup No Mercy&lt;/b&gt; policy, YOU the user are responsible for the data you put into an encrypted box. &lt;br /&gt;&lt;br /&gt;IF YOU AGREE TO TAKE FULL RESPONSIBILITY FOR YOUR DATA PRESS [YES], OTHERWISE PRESS [NO].</source>
<oldsource>This sandbox content will be placed in an encrypted container file, please note that any corruption of the container&apos;s header will render all its content permanently innaccessible. Corruption can occur as a result of a BSOD, a storage hadrware failure, or a maliciouse application overwriting random files. This feature is provided under a strickt &lt;b&gt;No Backup No Mercy&lt;/b&gt; policy, YOU the user are responsible for the data you put into an encrypted box. &lt;br /&gt;&lt;br /&gt;IF YOU AGREE TO TAKE FULL RESPONSIBILITY FOR YOUR DATA PRESS [YES], OTHERWISE PRESS [NO].</oldsource> <oldsource>This sandbox content will be placed in an encrypted container file, please note that any corruption of the container&apos;s header will render all its content permanently innaccessible. Corruption can occur as a result of a BSOD, a storage hadrware failure, or a maliciouse application overwriting random files. This feature is provided under a strickt &lt;b&gt;No Backup No Mercy&lt;/b&gt; policy, YOU the user are responsible for the data you put into an encrypted box. &lt;br /&gt;&lt;br /&gt;IF YOU AGREE TO TAKE FULL RESPONSIBILITY FOR YOUR DATA PRESS [YES], OTHERWISE PRESS [NO].</oldsource>
<translation> &lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt; [], [].</translation> <translation> &lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt; [], [].</translation>
</message> </message>
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="107"/> <location filename="Wizards/NewBoxWizard.cpp" line="107"/>
@ -2051,7 +2052,7 @@ Note: The update check is often behind the latest GitHub release to ensure that
<message> <message>
<location filename="Windows/OptionsWindow.cpp" line="1011"/> <location filename="Windows/OptionsWindow.cpp" line="1011"/>
<source>This sandbox has been deleted hence configuration can not be saved.</source> <source>This sandbox has been deleted hence configuration can not be saved.</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Windows/OptionsWindow.cpp" line="1075"/> <location filename="Windows/OptionsWindow.cpp" line="1075"/>
@ -3026,7 +3027,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
<message> <message>
<location filename="Wizards/SetupWizard.cpp" line="677"/> <location filename="Wizards/SetupWizard.cpp" line="677"/>
<source>Sandboxie-Plus applies strict application restrictions, which can lead to compatibility issues. Stay updated with Sandboxie-Plus, including compatibility templates and troubleshooting, to ensure smooth operation amid Windows updates and application changes.</source> <source>Sandboxie-Plus applies strict application restrictions, which can lead to compatibility issues. Stay updated with Sandboxie-Plus, including compatibility templates and troubleshooting, to ensure smooth operation amid Windows updates and application changes.</source>
<translation>Sandboxie Plus 使 Sandboxie Plus Windows </translation> <translation>Sandboxie-Plus 使 Sandboxie-Plus Windows </translation>
</message> </message>
<message> <message>
<location filename="Wizards/SetupWizard.cpp" line="683"/> <location filename="Wizards/SetupWizard.cpp" line="683"/>
@ -3690,7 +3691,7 @@ Do you want to do the clean up?</source>
<location filename="SandMan.cpp" line="1563"/> <location filename="SandMan.cpp" line="1563"/>
<source>This box does not enforce isolation, it is intended to be used as an &lt;a href=&quot;sbie://docs/compartment-mode&quot;&gt;application compartment&lt;/a&gt; for software virtualization only.</source> <source>This box does not enforce isolation, it is intended to be used as an &lt;a href=&quot;sbie://docs/compartment-mode&quot;&gt;application compartment&lt;/a&gt; for software virtualization only.</source>
<oldsource>This box does not enforce isolation, it is intended to be used as an application compartment for software virtualization only.</oldsource> <oldsource>This box does not enforce isolation, it is intended to be used as an application compartment for software virtualization only.</oldsource>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="SandMan.cpp" line="1571"/> <location filename="SandMan.cpp" line="1571"/>
@ -3834,7 +3835,7 @@ Please check if there is an update for sandboxie.</oldsource>
<message> <message>
<location filename="SandMan.cpp" line="2526"/> <location filename="SandMan.cpp" line="2526"/>
<source>Your Windows build %1 exceeds the current known support capabilities of your Sandboxie version, Sandboxie will attempt to use the last-known offsets which may cause system instability.</source> <source>Your Windows build %1 exceeds the current known support capabilities of your Sandboxie version, Sandboxie will attempt to use the last-known offsets which may cause system instability.</source>
<translation>Windows版本 %1 Sandboxie Sandboxie 使</translation> <translation> Windows %1 Sandboxie Sandboxie 使</translation>
</message> </message>
<message> <message>
<location filename="SandMan.cpp" line="2537"/> <location filename="SandMan.cpp" line="2537"/>
@ -5481,8 +5482,8 @@ Error: %1</source>
</message> </message>
<message> <message>
<location filename="Views/SbieView.cpp" line="1789"/> <location filename="Views/SbieView.cpp" line="1789"/>
<source>This sandbox is disabled, do you want to enable it?</source> <source>This sandbox is disabled or restricted to a group/user, do you want to edit it?</source>
<translation></translation> <translation>/</translation>
</message> </message>
</context> </context>
<context> <context>
@ -7733,7 +7734,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
<location filename="Forms/OptionsWindow.ui" line="811"/> <location filename="Forms/OptionsWindow.ui" line="811"/>
<source>Allow sandboxed windows to cover the taskbar</source> <source>Allow sandboxed windows to cover the taskbar</source>
<oldsource>Allow sandboxed windows to cover taskbar</oldsource> <oldsource>Allow sandboxed windows to cover taskbar</oldsource>
<translation type="unfinished"></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="855"/> <location filename="Forms/OptionsWindow.ui" line="855"/>
@ -7807,13 +7808,13 @@ If you are a great patreaon supporter already, sandboxie can check online for an
<location filename="Forms/OptionsWindow.ui" line="4718"/> <location filename="Forms/OptionsWindow.ui" line="4718"/>
<source>Prevent sandboxed processes from accessing system details through WMI</source> <source>Prevent sandboxed processes from accessing system details through WMI</source>
<oldsource>Prevent sandboxed processes from accessing system deatils through WMI</oldsource> <oldsource>Prevent sandboxed processes from accessing system deatils through WMI</oldsource>
<translation type="unfinished"> WMI 访</translation> <translation> WMI 访</translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="4759"/> <location filename="Forms/OptionsWindow.ui" line="4759"/>
<source>Some programs retrieve system details via WMI (Windows Management Instrumentation), a built-in Windows database, rather than using conventional methods. For instance, &apos;tasklist.exe&apos; can access a complete list of processes even if &apos;HideOtherBoxes&apos; is enabled. Enable this option to prevent such behavior.</source> <source>Some programs retrieve system details via WMI (Windows Management Instrumentation), a built-in Windows database, rather than using conventional methods. For instance, &apos;tasklist.exe&apos; can access a complete list of processes even if &apos;HideOtherBoxes&apos; is enabled. Enable this option to prevent such behavior.</source>
<oldsource>Some programs read system deatils through WMI(A Windows built-in database) instead of normal ways. For example,&quot;tasklist.exe&quot; could get full processes list even if &quot;HideOtherBoxes&quot; is opened through accessing WMI. Enable this option to stop these heavior.</oldsource> <oldsource>Some programs read system deatils through WMI(A Windows built-in database) instead of normal ways. For example,&quot;tasklist.exe&quot; could get full processes list even if &quot;HideOtherBoxes&quot; is opened through accessing WMI. Enable this option to stop these heavior.</oldsource>
<translation type="unfinished"> WMI(Windows内置数据库) &quot;&quot; &quot;tasklist.exe&quot; 访 WMI </translation> <translation> WMI(Windows内置数据库) &quot;&quot; &quot;tasklist.exe&quot; 访 WMI </translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="4777"/> <location filename="Forms/OptionsWindow.ui" line="4777"/>

View File

@ -57,7 +57,7 @@
<message> <message>
<location filename="Forms/BoxImageWindow.ui" line="163"/> <location filename="Forms/BoxImageWindow.ui" line="163"/>
<source>Lock the box when all processes stop.</source> <source>Lock the box when all processes stop.</source>
<translation></translation> <translation></translation>
</message> </message>
</context> </context>
<context> <context>
@ -256,7 +256,7 @@
<source>Prevent sandboxed programs on the host from loading sandboxed DLLs</source> <source>Prevent sandboxed programs on the host from loading sandboxed DLLs</source>
<oldsource>Prevent sandboxed programs installed on the host from loading DLLs from the sandbox</oldsource> <oldsource>Prevent sandboxed programs installed on the host from loading DLLs from the sandbox</oldsource>
<translatorcomment>&quot;&quot; is the actual translation showed in Windows for TradChinese</translatorcomment> <translatorcomment>&quot;&quot; is the actual translation showed in Windows for TradChinese</translatorcomment>
<translation type="unfinished"> (DLL) </translation> <translation> (DLL) </translation>
</message> </message>
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="875"/> <location filename="Wizards/NewBoxWizard.cpp" line="875"/>
@ -1271,83 +1271,83 @@ You can use %USER% to save each users sandbox to an own fodler.</oldsource>
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="717"/> <location filename="Wizards/NewBoxWizard.cpp" line="717"/>
<source>Sandbox Isolation options</source> <source>Sandbox Isolation options</source>
<translation type="unfinished"></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="718"/> <location filename="Wizards/NewBoxWizard.cpp" line="718"/>
<source>On this page sandbox isolation options can be configured.</source> <source>On this page sandbox isolation options can be configured.</source>
<translation type="unfinished"></translation> <translation>調</translation>
</message> </message>
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="723"/> <location filename="Wizards/NewBoxWizard.cpp" line="723"/>
<source>Network Access</source> <source>Network Access</source>
<translation type="unfinished"></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="731"/> <location filename="Wizards/NewBoxWizard.cpp" line="731"/>
<source>Allow network/internet access</source> <source>Allow network/internet access</source>
<translation type="unfinished">/</translation> <translation>/</translation>
</message> </message>
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="732"/> <location filename="Wizards/NewBoxWizard.cpp" line="732"/>
<source>Block network/internet by denying access to Network devices</source> <source>Block network/internet by denying access to Network devices</source>
<translation type="unfinished">/</translation> <translation>/</translation>
</message> </message>
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="734"/> <location filename="Wizards/NewBoxWizard.cpp" line="734"/>
<source>Block network/internet using Windows Filtering Platform</source> <source>Block network/internet using Windows Filtering Platform</source>
<translation type="unfinished">使 Windows /</translation> <translation>使 Windows /</translation>
</message> </message>
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="740"/> <location filename="Wizards/NewBoxWizard.cpp" line="740"/>
<source>Allow access to network files and folders</source> <source>Allow access to network files and folders</source>
<translation type="unfinished"></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="741"/> <location filename="Wizards/NewBoxWizard.cpp" line="741"/>
<location filename="Wizards/NewBoxWizard.cpp" line="768"/> <location filename="Wizards/NewBoxWizard.cpp" line="768"/>
<source>This option is not recommended for Hardened boxes</source> <source>This option is not recommended for Hardened boxes</source>
<translation type="unfinished"></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="746"/> <location filename="Wizards/NewBoxWizard.cpp" line="746"/>
<source>Prompt user whether to allow an exemption from the blockade</source> <source>Prompt user whether to allow an exemption from the blockade</source>
<translation type="unfinished"></translation> <translation>使</translation>
</message> </message>
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="752"/> <location filename="Wizards/NewBoxWizard.cpp" line="752"/>
<source>Admin Options</source> <source>Admin Options</source>
<translation type="unfinished"></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="756"/> <location filename="Wizards/NewBoxWizard.cpp" line="756"/>
<source>Drop rights from Administrators and Power Users groups</source> <source>Drop rights from Administrators and Power Users groups</source>
<translation type="unfinished"> Power Users 使</translation> <translation> Power Users (使) </translation>
</message> </message>
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="762"/> <location filename="Wizards/NewBoxWizard.cpp" line="762"/>
<source>Make applications think they are running elevated</source> <source>Make applications think they are running elevated</source>
<translation type="unfinished">使</translation> <translation>使</translation>
</message> </message>
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="767"/> <location filename="Wizards/NewBoxWizard.cpp" line="767"/>
<source>Allow MSIServer to run with a sandboxed system token</source> <source>Allow MSIServer to run with a sandboxed system token</source>
<translation type="unfinished"> MSIServer 使</translation> <translation> MSIServer 使</translation>
</message> </message>
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="774"/> <location filename="Wizards/NewBoxWizard.cpp" line="774"/>
<source>Box Options</source> <source>Box Options</source>
<translation type="unfinished"></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="778"/> <location filename="Wizards/NewBoxWizard.cpp" line="778"/>
<source>Use a Sandboxie login instead of an anonymous token</source> <source>Use a Sandboxie login instead of an anonymous token</source>
<translation type="unfinished">使 Sandboxie </translation> <translation>使 Sandboxie </translation>
</message> </message>
<message> <message>
<location filename="Wizards/NewBoxWizard.cpp" line="779"/> <location filename="Wizards/NewBoxWizard.cpp" line="779"/>
<source>Using a custom Sandboxie Token allows to isolate individual sandboxes from each other better, and it shows in the user column of task managers the name of the box a process belongs to. Some 3rd party security solutions may however have problems with custom tokens.</source> <source>Using a custom Sandboxie Token allows to isolate individual sandboxes from each other better, and it shows in the user column of task managers the name of the box a process belongs to. Some 3rd party security solutions may however have problems with custom tokens.</source>
<translation type="unfinished">使 Sandboxie 使</translation> <translation>使 Sandboxie 使</translation>
</message> </message>
</context> </context>
<context> <context>
@ -2331,27 +2331,27 @@ Note: The update check is often behind the latest GitHub release to ensure that
<message> <message>
<location filename="Windows/OptionsNetwork.cpp" line="802"/> <location filename="Windows/OptionsNetwork.cpp" line="802"/>
<source>Please enter a domain to be filtered</source> <source>Please enter a domain to be filtered</source>
<translation type="unfinished"></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Windows/OptionsNetwork.cpp" line="832"/> <location filename="Windows/OptionsNetwork.cpp" line="832"/>
<source>Yes</source> <source>Yes</source>
<translation type="unfinished"></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Windows/OptionsNetwork.cpp" line="833"/> <location filename="Windows/OptionsNetwork.cpp" line="833"/>
<source>No</source> <source>No</source>
<translation type="unfinished"></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Windows/OptionsNetwork.cpp" line="857"/> <location filename="Windows/OptionsNetwork.cpp" line="857"/>
<source>Please enter IP and Port.</source> <source>Please enter IP and Port.</source>
<translation type="unfinished"></translation> <translation> IP </translation>
</message> </message>
<message> <message>
<location filename="Windows/OptionsNetwork.cpp" line="1030"/> <location filename="Windows/OptionsNetwork.cpp" line="1030"/>
<source> entry: IP or Port cannot be empty</source> <source> entry: IP or Port cannot be empty</source>
<translation type="unfinished"></translation> <translation> 輸入: IP </translation>
</message> </message>
<message> <message>
<location filename="Windows/OptionsAdvanced.cpp" line="1168"/> <location filename="Windows/OptionsAdvanced.cpp" line="1168"/>
@ -4130,7 +4130,7 @@ No will choose: %2</source>
<location filename="SandMan.cpp" line="513"/> <location filename="SandMan.cpp" line="513"/>
<location filename="SandMan.cpp" line="657"/> <location filename="SandMan.cpp" line="657"/>
<source>Suspend All Processes</source> <source>Suspend All Processes</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="SandMan.cpp" line="515"/> <location filename="SandMan.cpp" line="515"/>
@ -5456,8 +5456,9 @@ This file is part of Sandboxie and all changed done to it will be reverted next
</message> </message>
<message> <message>
<location filename="Views/SbieView.cpp" line="1789"/> <location filename="Views/SbieView.cpp" line="1789"/>
<source>This sandbox is disabled, do you want to enable it?</source> <source>This sandbox is disabled or restricted to a group/user, do you want to edit it?</source>
<translation></translation> <oldsource>This sandbox is disabled, do you want to enable it?</oldsource>
<translation>/使</translation>
</message> </message>
</context> </context>
<context> <context>
@ -7512,18 +7513,18 @@ If you are a great patreaon supporter already, sandboxie can check online for an
<message> <message>
<source>Prevent sandboxed processes from interfering with power operations</source> <source>Prevent sandboxed processes from interfering with power operations</source>
<oldsource>Prevents processes in the sandbox from interfering with power operation</oldsource> <oldsource>Prevents processes in the sandbox from interfering with power operation</oldsource>
<translation type="obsolete"></translation> <translation type="obsolete"></translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="1545"/> <location filename="Forms/OptionsWindow.ui" line="1545"/>
<source>Prevent processes from capturing window images from sandboxed windows</source> <source>Prevent processes from capturing window images from sandboxed windows</source>
<oldsource>Prevents getting an image of the window in the sandbox.</oldsource> <oldsource>Prevents getting an image of the window in the sandbox.</oldsource>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="1516"/> <location filename="Forms/OptionsWindow.ui" line="1516"/>
<source>Allow useful Windows processes access to protected processes</source> <source>Allow useful Windows processes access to protected processes</source>
<translation> Windows </translation> <translation> Windows </translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="1808"/> <location filename="Forms/OptionsWindow.ui" line="1808"/>
@ -7563,7 +7564,7 @@ If you are a great patreaon supporter already, sandboxie can check online for an
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="2428"/> <location filename="Forms/OptionsWindow.ui" line="2428"/>
<source>Don&apos;t stop lingering processes with windows</source> <source>Don&apos;t stop lingering processes with windows</source>
<translation> Windows </translation> <translation> Windows </translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="2468"/> <location filename="Forms/OptionsWindow.ui" line="2468"/>
@ -7762,7 +7763,7 @@ This is done to prevent rogue processes inside the sandbox from creating a renam
<location filename="Forms/OptionsWindow.ui" line="4231"/> <location filename="Forms/OptionsWindow.ui" line="4231"/>
<source>Sandboxie&apos;s functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.</source> <source>Sandboxie&apos;s functionality can be enhanced by using optional DLLs which can be loaded into each sandboxed process on start by the SbieDll.dll file, the add-on manager in the global settings offers a couple of useful extensions, once installed they can be enabled here for the current box.</source>
<oldsource>Sandboxies functionality can be enhanced using optional dlls which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.</oldsource> <oldsource>Sandboxies functionality can be enhanced using optional dlls which can be loaded into each sandboxed process on start by the SbieDll.dll, the add-on manager in the global settings offers a couple useful extensions, once installed they can be enabled here for the current box.</oldsource>
<translation>Sandboxie 使 DLL DLL SbieDll.dll </translation> <translation>Sandboxie 使 DLL DLL SbieDll.dll </translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="1727"/> <location filename="Forms/OptionsWindow.ui" line="1727"/>
@ -7829,39 +7830,39 @@ This is done to prevent rogue processes inside the sandbox from creating a renam
<location filename="Forms/OptionsWindow.ui" line="818"/> <location filename="Forms/OptionsWindow.ui" line="818"/>
<source>This feature does not block all means of obtaining a screen capture, only some common ones.</source> <source>This feature does not block all means of obtaining a screen capture, only some common ones.</source>
<oldsource>This feature does not block all means of optaining a screen capture only some common once.</oldsource> <oldsource>This feature does not block all means of optaining a screen capture only some common once.</oldsource>
<translation type="unfinished"></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="801"/> <location filename="Forms/OptionsWindow.ui" line="801"/>
<source>Prevent move mouse, bring in front, and similar operations, this is likely to cause issues with games.</source> <source>Prevent move mouse, bring in front, and similar operations, this is likely to cause issues with games.</source>
<oldsource>Prevent move mouse, bring in front, and simmilar operations, this is likely to cause issues with games.</oldsource> <oldsource>Prevent move mouse, bring in front, and simmilar operations, this is likely to cause issues with games.</oldsource>
<translation type="unfinished"></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="811"/> <location filename="Forms/OptionsWindow.ui" line="811"/>
<source>Allow sandboxed windows to cover the taskbar</source> <source>Allow sandboxed windows to cover the taskbar</source>
<oldsource>Allow sandboxed windows to cover taskbar</oldsource> <oldsource>Allow sandboxed windows to cover taskbar</oldsource>
<translation type="unfinished"></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="855"/> <location filename="Forms/OptionsWindow.ui" line="855"/>
<source>Isolation</source> <source>Isolation</source>
<translation type="unfinished"></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="1569"/> <location filename="Forms/OptionsWindow.ui" line="1569"/>
<source>Only Administrator user accounts can make changes to this sandbox</source> <source>Only Administrator user accounts can make changes to this sandbox</source>
<translation type="unfinished"></translation> <translation>使</translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="1577"/> <location filename="Forms/OptionsWindow.ui" line="1577"/>
<source>Job Object</source> <source>Job Object</source>
<translation type="unfinished"></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="2165"/> <location filename="Forms/OptionsWindow.ui" line="2165"/>
<source>&lt;b&gt;&lt;font color=&apos;red&apos;&gt;SECURITY ADVISORY&lt;/font&gt;:&lt;/b&gt; Using &lt;a href=&quot;sbie://docs/breakoutfolder&quot;&gt;BreakoutFolder&lt;/a&gt; and/or &lt;a href=&quot;sbie://docs/breakoutprocess&quot;&gt;BreakoutProcess&lt;/a&gt; in combination with Open[File/Pipe]Path directives can compromise security. Please review the security section for each option in the documentation before use.</source> <source>&lt;b&gt;&lt;font color=&apos;red&apos;&gt;SECURITY ADVISORY&lt;/font&gt;:&lt;/b&gt; Using &lt;a href=&quot;sbie://docs/breakoutfolder&quot;&gt;BreakoutFolder&lt;/a&gt; and/or &lt;a href=&quot;sbie://docs/breakoutprocess&quot;&gt;BreakoutProcess&lt;/a&gt; in combination with Open[File/Pipe]Path directives can compromise security. Please review the security section for each option in the documentation before use.</source>
<translation type="unfinished"></translation> <translation>&lt;b&gt;&lt;font color=&apos;red&apos;&gt;&lt;/font&gt;:&lt;/b&gt; 使 &lt;a href=&quot;sbie://docs/breakoutfolder&quot;&gt;BreakoutFolder&lt;/a&gt; / &lt;a href=&quot; sbie://docs/breakoutprocess&quot;&gt;BreakoutProcess&lt;/a&gt; Open[File/Pipe]Path 使使</translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="2238"/> <location filename="Forms/OptionsWindow.ui" line="2238"/>
@ -7887,13 +7888,13 @@ This is done to prevent rogue processes inside the sandbox from creating a renam
<location filename="Forms/OptionsWindow.ui" line="2574"/> <location filename="Forms/OptionsWindow.ui" line="2574"/>
<source>This setting can be used to prevent programs from running in the sandbox without the user&apos;s knowledge or consent.</source> <source>This setting can be used to prevent programs from running in the sandbox without the user&apos;s knowledge or consent.</source>
<oldsource>This can be used to prevent a host malicious program from breaking through by launching a pre-designed malicious program into an unlocked encrypted sandbox.</oldsource> <oldsource>This can be used to prevent a host malicious program from breaking through by launching a pre-designed malicious program into an unlocked encrypted sandbox.</oldsource>
<translation type="unfinished"></translation> <translation>使使</translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="2577"/> <location filename="Forms/OptionsWindow.ui" line="2577"/>
<source>Display a pop-up warning before starting a process in the sandbox from an external source</source> <source>Display a pop-up warning before starting a process in the sandbox from an external source</source>
<oldsource>A pop-up warning before launching a process into the sandbox from an external source.</oldsource> <oldsource>A pop-up warning before launching a process into the sandbox from an external source.</oldsource>
<translation type="unfinished"></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="2596"/> <location filename="Forms/OptionsWindow.ui" line="2596"/>
@ -8103,17 +8104,17 @@ To specify a process use &apos;$:program.exe&apos; as path.</source>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="794"/> <location filename="Forms/OptionsWindow.ui" line="794"/>
<source>Prevent sandboxed processes from interfering with power operations (Experimental)</source> <source>Prevent sandboxed processes from interfering with power operations (Experimental)</source>
<translation> ()</translation> <translation> ()</translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="804"/> <location filename="Forms/OptionsWindow.ui" line="804"/>
<source>Prevent interference with the user interface (Experimental)</source> <source>Prevent interference with the user interface (Experimental)</source>
<translation>使 ()</translation> <translation>使 ()</translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="821"/> <location filename="Forms/OptionsWindow.ui" line="821"/>
<source>Prevent sandboxed processes from capturing window images (Experimental, may cause UI glitches)</source> <source>Prevent sandboxed processes from capturing window images (Experimental, may cause UI glitches)</source>
<translation> ( UI )</translation> <translation> ( UI )</translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="1864"/> <location filename="Forms/OptionsWindow.ui" line="1864"/>
@ -8138,62 +8139,62 @@ To specify a process use &apos;$:program.exe&apos; as path.</source>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="3523"/> <location filename="Forms/OptionsWindow.ui" line="3523"/>
<source>DNS Filter</source> <source>DNS Filter</source>
<translation type="unfinished"></translation> <translation>DNS </translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="3540"/> <location filename="Forms/OptionsWindow.ui" line="3540"/>
<source>Add Filter</source> <source>Add Filter</source>
<translation type="unfinished"></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="3560"/> <location filename="Forms/OptionsWindow.ui" line="3560"/>
<source>With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.</source> <source>With the DNS filter individual domains can be blocked, on a per process basis. Leave the IP column empty to block or enter an ip to redirect.</source>
<translation type="unfinished"></translation> <translation>使 DNS IP IP </translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="3586"/> <location filename="Forms/OptionsWindow.ui" line="3586"/>
<source>Domain</source> <source>Domain</source>
<translation type="unfinished"></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="3602"/> <location filename="Forms/OptionsWindow.ui" line="3602"/>
<source>Internet Proxy</source> <source>Internet Proxy</source>
<translation type="unfinished"></translation> <translation> Proxy</translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="3663"/> <location filename="Forms/OptionsWindow.ui" line="3663"/>
<source>Add Proxy</source> <source>Add Proxy</source>
<translation type="unfinished"></translation> <translation> Proxy</translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="3636"/> <location filename="Forms/OptionsWindow.ui" line="3636"/>
<source>Test Proxy</source> <source>Test Proxy</source>
<translation type="unfinished"></translation> <translation> Proxy</translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="3689"/> <location filename="Forms/OptionsWindow.ui" line="3689"/>
<source>Auth</source> <source>Auth</source>
<translation type="unfinished"></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="3694"/> <location filename="Forms/OptionsWindow.ui" line="3694"/>
<source>Login</source> <source>Login</source>
<translation type="unfinished"></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="3699"/> <location filename="Forms/OptionsWindow.ui" line="3699"/>
<source>Password</source> <source>Password</source>
<translation type="unfinished"></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="3619"/> <location filename="Forms/OptionsWindow.ui" line="3619"/>
<source>Sandboxed programs can be forced to use a preset SOCKS5 proxy.</source> <source>Sandboxed programs can be forced to use a preset SOCKS5 proxy.</source>
<translation type="unfinished"></translation> <translation>使 SOCKS5 Proxy</translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="3629"/> <location filename="Forms/OptionsWindow.ui" line="3629"/>
<source>Resolve hostnames via proxy</source> <source>Resolve hostnames via proxy</source>
<translation type="unfinished"></translation> <translation> Proxy </translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="3752"/> <location filename="Forms/OptionsWindow.ui" line="3752"/>
@ -8485,7 +8486,7 @@ The process match level has a higher priority than the specificity and describes
</message> </message>
<message> <message>
<source>This command runs after all processes in the sandbox have finished.</source> <source>This command runs after all processes in the sandbox have finished.</source>
<translation type="vanished"></translation> <translation type="vanished"></translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="4522"/> <location filename="Forms/OptionsWindow.ui" line="4522"/>
@ -8545,12 +8546,12 @@ The process match level has a higher priority than the specificity and describes
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="4072"/> <location filename="Forms/OptionsWindow.ui" line="4072"/>
<source>Exclude this sandbox from being terminated when &quot;Terminate All Processes&quot; is invoked.</source> <source>Exclude this sandbox from being terminated when &quot;Terminate All Processes&quot; is invoked.</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="4519"/> <location filename="Forms/OptionsWindow.ui" line="4519"/>
<source>These commands are run UNBOXED after all processes in the sandbox have finished.</source> <source>These commands are run UNBOXED after all processes in the sandbox have finished.</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="4589"/> <location filename="Forms/OptionsWindow.ui" line="4589"/>
@ -8809,50 +8810,50 @@ Please note that this values are currently user specific and saved globally for
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="1711"/> <location filename="Forms/OptionsWindow.ui" line="1711"/>
<source>Limit restrictions</source> <source>Limit restrictions</source>
<translation type="unfinished"></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="1629"/> <location filename="Forms/OptionsWindow.ui" line="1629"/>
<location filename="Forms/OptionsWindow.ui" line="1636"/> <location filename="Forms/OptionsWindow.ui" line="1636"/>
<source>Leave it blank to disable the setting(Unit:KB)</source> <source>Leave it blank to disable the setting(Unit:KB)</source>
<translation type="unfinished"></translation> <translation> (單位: KB)</translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="1643"/> <location filename="Forms/OptionsWindow.ui" line="1643"/>
<source>Leave it blank to disable the setting</source> <source>Leave it blank to disable the setting</source>
<translation type="unfinished"></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="1585"/> <location filename="Forms/OptionsWindow.ui" line="1585"/>
<source>Total Processes Number Limit:</source> <source>Total Processes Number Limit:</source>
<translation type="unfinished"></translation> <translation>:</translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="1615"/> <location filename="Forms/OptionsWindow.ui" line="1615"/>
<source>Total Processes Memory Limit:</source> <source>Total Processes Memory Limit:</source>
<translation type="unfinished"></translation> <translation>:</translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="1622"/> <location filename="Forms/OptionsWindow.ui" line="1622"/>
<source>Single Process Memory Limit:</source> <source>Single Process Memory Limit:</source>
<translation type="unfinished"></translation> <translation>:</translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="4711"/> <location filename="Forms/OptionsWindow.ui" line="4711"/>
<source>Don&apos;t allow sandboxed processes to see processes running outside any boxes</source> <source>Don&apos;t allow sandboxed processes to see processes running outside any boxes</source>
<translation type="unfinished"></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="4718"/> <location filename="Forms/OptionsWindow.ui" line="4718"/>
<source>Prevent sandboxed processes from accessing system details through WMI</source> <source>Prevent sandboxed processes from accessing system details through WMI</source>
<oldsource>Prevent sandboxed processes from accessing system deatils through WMI</oldsource> <oldsource>Prevent sandboxed processes from accessing system deatils through WMI</oldsource>
<translation type="unfinished"></translation> <translation> WMI </translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="4759"/> <location filename="Forms/OptionsWindow.ui" line="4759"/>
<source>Some programs retrieve system details via WMI (Windows Management Instrumentation), a built-in Windows database, rather than using conventional methods. For instance, &apos;tasklist.exe&apos; can access a complete list of processes even if &apos;HideOtherBoxes&apos; is enabled. Enable this option to prevent such behavior.</source> <source>Some programs retrieve system details via WMI (Windows Management Instrumentation), a built-in Windows database, rather than using conventional methods. For instance, &apos;tasklist.exe&apos; can access a complete list of processes even if &apos;HideOtherBoxes&apos; is enabled. Enable this option to prevent such behavior.</source>
<oldsource>Some programs read system deatils through WMI(A Windows built-in database) instead of normal ways. For example,&quot;tasklist.exe&quot; could get full processes list even if &quot;HideOtherBoxes&quot; is opened through accessing WMI. Enable this option to stop these heavior.</oldsource> <oldsource>Some programs read system deatils through WMI(A Windows built-in database) instead of normal ways. For example,&quot;tasklist.exe&quot; could get full processes list even if &quot;HideOtherBoxes&quot; is opened through accessing WMI. Enable this option to stop these heavior.</oldsource>
<translation type="unfinished"></translation> <translation> WMI (Windows ) Windows 使使HideOtherBoxes()tasklist.exe</translation>
</message> </message>
<message> <message>
<location filename="Forms/OptionsWindow.ui" line="4962"/> <location filename="Forms/OptionsWindow.ui" line="4962"/>
@ -9025,7 +9026,7 @@ Please note that this values are currently user specific and saved globally for
<message> <message>
<location filename="Forms/SelectBoxWindow.ui" line="45"/> <location filename="Forms/SelectBoxWindow.ui" line="45"/>
<source>Force direct child to be sandboxed, but does not include indirect child processes that are opened through the DCOM and IPC interface.</source> <source>Force direct child to be sandboxed, but does not include indirect child processes that are opened through the DCOM and IPC interface.</source>
<translation type="unfinished"></translation> <translation> DCOM IPC </translation>
</message> </message>
<message> <message>
<location filename="Forms/SelectBoxWindow.ui" line="105"/> <location filename="Forms/SelectBoxWindow.ui" line="105"/>
@ -9040,7 +9041,7 @@ Please note that this values are currently user specific and saved globally for
<message> <message>
<location filename="Forms/SelectBoxWindow.ui" line="48"/> <location filename="Forms/SelectBoxWindow.ui" line="48"/>
<source>Force Children</source> <source>Force Children</source>
<translation type="unfinished"></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="Forms/SelectBoxWindow.ui" line="56"/> <location filename="Forms/SelectBoxWindow.ui" line="56"/>
@ -9311,13 +9312,13 @@ Please note that this values are currently user specific and saved globally for
<message> <message>
<location filename="Forms/SettingsWindow.ui" line="212"/> <location filename="Forms/SettingsWindow.ui" line="212"/>
<source>Hotkey for suspending process/folder forcing:</source> <source>Hotkey for suspending process/folder forcing:</source>
<translation> / :</translation> <translation> / :</translation>
</message> </message>
<message> <message>
<location filename="Forms/SettingsWindow.ui" line="80"/> <location filename="Forms/SettingsWindow.ui" line="80"/>
<source>Hotkey for suspending all processes:</source> <source>Hotkey for suspending all processes:</source>
<oldsource>Hotkey for suspending all process</oldsource> <oldsource>Hotkey for suspending all process</oldsource>
<translation type="unfinished"></translation> <translation>:</translation>
</message> </message>
<message> <message>
<location filename="Forms/SettingsWindow.ui" line="236"/> <location filename="Forms/SettingsWindow.ui" line="236"/>
@ -9892,7 +9893,7 @@ Unlike the preview channel, it does not include untested, potentially breaking,
<message> <message>
<location filename="Forms/SettingsWindow.ui" line="2165"/> <location filename="Forms/SettingsWindow.ui" line="2165"/>
<source>Add &quot;Sandboxie\All Sandboxes&quot; group to the sandboxed token (experimental)</source> <source>Add &quot;Sandboxie\All Sandboxes&quot; group to the sandboxed token (experimental)</source>
<translation type="unfinished"></translation> <translation>Sandboxie\All Sandboxes () ()</translation>
</message> </message>
<message> <message>
<location filename="Forms/SettingsWindow.ui" line="2368"/> <location filename="Forms/SettingsWindow.ui" line="2368"/>

View File

@ -1,6 +1,6 @@
echo %* echo %*
IF "%~7" == "" ( set "ghQtBuilds_hash_x64=f9029e02badd6a79d9bb092f9fb0772214dbcf8cd0122422514291d755860c37" ) ELSE ( set "ghQtBuilds_hash_x64=%~7" ) IF "%~7" == "" ( set "ghQtBuilds_hash_x64=30290d82a02bfaa24c1bf37bcb9c074aba18a673a7176628fccdf71197cee898" ) ELSE ( set "ghQtBuilds_hash_x64=%~7" )
IF "%~6" == "" ( set "ghQtBuilds_hash_x86=79755f2bf95d0ca305096fc33582cd557345a79aa63f9821002fdddefdc0fd94" ) ELSE ( set "ghQtBuilds_hash_x86=%~6" ) IF "%~6" == "" ( set "ghQtBuilds_hash_x86=bf4124046cc50ccbbeb3f786c041e884fd4205cd6e616070a75c850105cbf1db" ) ELSE ( set "ghQtBuilds_hash_x86=%~6" )
IF "%~5" == "" ( set "ghQtBuilds_repo=qt-builds" ) ELSE ( set "ghQtBuilds_repo=%~5" ) IF "%~5" == "" ( set "ghQtBuilds_repo=qt-builds" ) ELSE ( set "ghQtBuilds_repo=%~5" )
IF "%~4" == "" ( set "ghQtBuilds_user=xanasoft" ) ELSE ( set "ghQtBuilds_user=%~4" ) IF "%~4" == "" ( set "ghQtBuilds_user=xanasoft" ) ELSE ( set "ghQtBuilds_user=%~4" )
IF "%~3" == "" ( set "qt6_version=6.3.1" ) ELSE ( set "qt6_version=%~3" ) IF "%~3" == "" ( set "qt6_version=6.3.1" ) ELSE ( set "qt6_version=%~3" )