diff --git a/CHANGELOG.md b/CHANGELOG.md
index 231cd709..d7faa24c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).
+## [1.1x.x / 5.6x.x] - 2024-xx-xx
+
+### Added
+- added Japanese language on Plus UI [#3573](https://github.com/sandboxie-plus/Sandboxie/pull/3573)
+
+
+
## [1.12.7 / 5.67.7] - 2024-01-10
### Fixed
diff --git a/Installer/Languages.iss b/Installer/Languages.iss
old mode 100644
new mode 100755
index 68f12958..aa464b34
--- a/Installer/Languages.iss
+++ b/Installer/Languages.iss
@@ -15,6 +15,7 @@ Name: "french"; MessagesFile: "compiler:Languages\French.isl"
Name: "german"; MessagesFile: "compiler:Languages\German.isl"
Name: "hungarian"; MessagesFile: "compiler:Languages\Hungarian.isl"
Name: "Italian"; MessagesFile: "compiler:Languages\Italian.isl"
+Name: "japanese"; MessagesFile: "compiler:Languages\Japanese.isl"
Name: "Korean"; MessagesFile: "isl\Korean.isl"
Name: "polish"; MessagesFile: "compiler:Languages\Polish.isl"
Name: "brazilianportuguese"; MessagesFile: "compiler:Languages\BrazilianPortuguese.isl"
@@ -34,7 +35,6 @@ Name: "vietnamese"; MessagesFile: "isl\Vietnamese.isl"
;Name: "finnish"; MessagesFile: "compiler:Languages\Finnish.isl"
;Name: "hebrew"; MessagesFile: "compiler:Languages\Hebrew.isl"
;Name: "icelandic"; MessagesFile: "compiler:Languages\Icelandic.isl"
-;Name: "japanese"; MessagesFile: "compiler:Languages\Japanese.isl"
;Name: "norwegian"; MessagesFile: "compiler:Languages\Norwegian.isl"
;Name: "slovak"; MessagesFile: "compiler:Languages\Slovak.isl"
;Name: "slovenian"; MessagesFile: "compiler:Languages\Slovenian.isl"
@@ -228,6 +228,29 @@ Italian.UninstallTaskLabel4=Rimuovi i file di &configurazione%nSelezionare quest
Italian.UninstallTaskLabel5=Rimuovi i file di configurazione e le &aree virtuali%nSelezionare questa opzione per rimuovere tutti i file di configurazione e le aree virtuali, inclusa la cartella Sandbox nei percorsi personalizzati mediante FileRootPath.
Italian.RefreshBuild=Aggiorna Templates.ini e translations.7z
+; Japanese
+japanese.AddSandboxedMenu="サンドボックス化して実行" を右クリックに追加
+japanese.AddSandboxedBrowser=Sandboxie 下で Web ブラウザを起動するショートカットをデスクトップに追加する
+japanese.SandboxieStartMenu1=プログラムを指定してサンドボックス化して実行
+japanese.SandboxieStartMenu2=Web ブラウザをサンドボックス化して実行
+japanese.SandboxieStartMenu3=Sandboxie スタートメニュー
+japanese.SandboxedBrowser=サンドボックス化した Web ブラウザ
+japanese.CustomPageLabel1=インストールタイプを選択
+japanese.CustomPageLabel2=どのようにインストールしますか
+japanese.CustomPageLabel3=インストールモードを選択してください
+japanese.CustomPageInstallMode=このコンピューターに {#MyAppName} をインストール
+japanese.CustomPageUpgradeMode=既存の {#MyAppName} インストールを上書き
+japanese.CustomPagePortableMode=ポータブル利用のためにすべてのファイルを展開する
+japanese.RequiresWin7OrLater=Sandboxie-Plus は Windows7 以降が必要です
+japanese.ClassicFound=Sandboxie Classic がインストールされています。最初にそれをアンインストールしなければなりません。今すぐアンインストールしますか?
+japanese.RunSandboxedMenu=サンドボックス化して実行(&S)
+japanese.UninstallTaskLabel1=アンインストールの種類を選択
+japanese.UninstallTaskLabel2=どのように Sandboxie-Plus をアンインストールしますか?
+japanese.UninstallTaskLabel3=構成ファイルとサンドボックスを保持する(&K)%n構成ファイルとサンドボックスを保持したまま Sandboxie-Plus を再インストールする予定なら、これが最も推奨されるオプションです。
+japanese.UninstallTaskLabel4=構成ファイルを削除する(&C)%nSandboxie.ini と Sandboxie-Plus.ini 構成ファイルを削除するには、このオプションを選択します。サンドボックスは変更しません。
+japanese.UninstallTaskLabel5=構成とサンドボックスを削除する(&S)%n全ての構成ファイルとサンドボックスを削除するには、このオプションを選択します。FileRootPath のカスタムパスにサンドボックスフォルダーも含めて削除します。
+japanese.RefreshBuild=最新の Templates.ini と翻訳をダウンロードする
+
; Korean
Korean.AddSandboxedMenu=상황에 맞는 메뉴에 "샌드박스에서 실행" 추가
Korean.AddSandboxedBrowser=Sandboxie에서 웹 브라우저를 시작하기 위한 바탕 화면 바로 가기 추가
diff --git a/Installer/Sandboxie-Plus.iss b/Installer/Sandboxie-Plus.iss
index 036709ab..c093eaa5 100644
--- a/Installer/Sandboxie-Plus.iss
+++ b/Installer/Sandboxie-Plus.iss
@@ -229,6 +229,7 @@ begin
'german': Result := 'de';
'hungarian': Result := 'hu';
'italian': Result := 'it';
+ 'japanese': Result := 'ja';
'korean': Result := 'ko';
'polish': Result := 'pl';
'brazilianportuguese': Result := 'pt_BR';
diff --git a/README.md b/README.md
index e55c2728..284feeaf 100644
--- a/README.md
+++ b/README.md
@@ -134,6 +134,7 @@ If you find Sandboxie useful, then feel free to contribute through our [Contribu
- bastik-1001, APMichael - German
- timinoun - Hungarian (provided by email)
- isaak654, DerivativeOfLog7 - Italian
+- takahiro-itou - Japanese
- VenusGirl - Korean
- 7zip - Polish ([provided separately](https://forum.xanasoft.com/viewtopic.php?f=12&t=4&start=20))
- JNylson - Portuguese and Brazilian Portuguese
diff --git a/SandboxiePlus/SandMan/SandMan.pri b/SandboxiePlus/SandMan/SandMan.pri
index 52243e4a..9e65518a 100644
--- a/SandboxiePlus/SandMan/SandMan.pri
+++ b/SandboxiePlus/SandMan/SandMan.pri
@@ -112,6 +112,7 @@ TRANSLATIONS += sandman_de.ts \
sandman_fr.ts \
sandman_hu.ts \
sandman_it.ts \
+ sandman_ja.ts \
sandman_ko.ts \
sandman_nl.ts \
sandman_pl.ts \
diff --git a/SandboxiePlus/SandMan/SandMan.vcxproj b/SandboxiePlus/SandMan/SandMan.vcxproj
index 37bf9290..b6e6f2be 100644
--- a/SandboxiePlus/SandMan/SandMan.vcxproj
+++ b/SandboxiePlus/SandMan/SandMan.vcxproj
@@ -519,6 +519,7 @@
+
diff --git a/SandboxiePlus/SandMan/SandMan.vcxproj.filters b/SandboxiePlus/SandMan/SandMan.vcxproj.filters
index d427a6c5..469ab713 100644
--- a/SandboxiePlus/SandMan/SandMan.vcxproj.filters
+++ b/SandboxiePlus/SandMan/SandMan.vcxproj.filters
@@ -468,6 +468,9 @@
Translation Files
+
+ Translation Files
+
Translation Files
diff --git a/SandboxiePlus/SandMan/Troubleshooting/lang_ja.json b/SandboxiePlus/SandMan/Troubleshooting/lang_ja.json
new file mode 100644
index 00000000..ce218fb0
--- /dev/null
+++ b/SandboxiePlus/SandMan/Troubleshooting/lang_ja.json
@@ -0,0 +1,80 @@
+{
+"Description Text...": "Description Text...",
+"Fix current issues": "Fix current issues",
+"Fix issues with sandboxing": "Fix issues with sandboxing",
+"An Application does not work properly when sandboxed": "An Application does not work properly when sandboxed",
+"Issues with a web browser": "Issues with a web browser",
+"Perform Sandbox maintenance": "Perform Sandbox maintenance",
+"Fix issues with the UI or Shell": "Fix issues with the UI or Shell",
+
+"Yes": "Yes",
+"No": "No",
+
+"App compatibility checker": "App compatibility checker",
+"This script check which app compatibility templates needs to be enabled": "This script check which app compatibility templates needs to be enabled",
+"Loaded %1 templates": "Loaded %1 templates",
+
+"Browser shortcut is missing from the desktop": "Browser shortcut is missing from the desktop",
+"This procedure will add a browser shortcut to the desktop": "This procedure will add a browser shortcut to the desktop",
+"Default Browser": "Default Browser",
+"Another": "Another",
+"Select Browser": "Select Browser",
+"Select Sandbox": "Select Sandbox",
+"Select which browser you want to create a shortcut for and in what box": "Select which browser you want to create a shortcut for and in what box",
+"Select Browser Path": "Select Browser Path",
+
+"Explorer Context Menu extension does not work": "Explorer Context Menu extension does not work",
+"This procedure will re install the shell integration": "This procedure will re install the shell integration",
+"Add Run Sandboxed": "Add Run Sandboxed",
+"Add Run Unsandboxed": "Add Run Unsandboxed",
+"Install legacy shell extensions": "Install legacy shell extensions",
+"Select which shell options should be reinstalled": "Select which shell options should be reinstalled",
+
+"Failed to install application into a sandbox": "Failed to install application into a sandbox",
+"Enter Installer Path": "Enter Installer Path",
+"Select a sandbox to install into": "Select a sandbox to install into",
+"This box has DropAdminRights enabled, preventing execution of installers. Do you want to disable this restriction, that will reduce the security level.": "This box has DropAdminRights enabled, preventing execution of installers. Do you want to disable this restriction, that will reduce the security level.",
+"Disable DropAdminRights": "Disable DropAdminRights",
+"Enable FakeAdminRights": "Enable FakeAdminRights",
+"running installer, pid: %1 press NEXT once it finishes to continue": "running installer, pid: %1 press NEXT once it finishes to continue",
+"Was the issue resolved?": "Was the issue resolved?",
+
+"Webcam or Sound does not work when sandboxed": "Webcam or Sound does not work when sandboxed",
+"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": "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",
+"\nPlease note that this required preset works only with a valid supporter certificate!": "\nPlease note that this required preset works only with a valid supporter certificate!",
+"Select which box to turn into a reduced isolation app compartment box.": "Select which box to turn into a reduced isolation app compartment box.",
+"The mitigation has been applied please try out the web cam in %1 and indicate if the issue has been resolved.": "The mitigation has been applied please try out the web cam in %1 and indicate if the issue has been resolved.",
+
+"Select affected sandbox": "Select affected sandbox",
+"Enter Process Name": "Enter Process Name",
+
+"Internet Access restrictions are in effect for the sandbox in which the program is running. The program is prohibited from accessing the Internet.": "Internet Access restrictions are in effect for the sandbox in which the program is running. The program is prohibited from accessing the Internet.",
+
+"Start/Run restrictions are in effect for the sandbox in which the program is running. The program is prohibited from starting or running.": "Start/Run restrictions are in effect for the sandbox in which the program is running. The program is prohibited from starting or running.",
+
+"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.": "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.",
+"The DACLs have been adjusted, please try to run your application again and indicate if the issue has been resolved.": "The DACLs have been adjusted, please try to run your application again and indicate if the issue has been resolved.",
+"DACLs fix did not resolve the issue": "DACLs fix did not resolve the issue",
+
+"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.": "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.",
+
+"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 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.",
+
+"Do you want to open the box option dialog to change this preset?": "Do you want to open the box option dialog to change this preset?",
+"No, it is fine as it is": "No, it is fine as it is",
+"No, but I want to report a bug": "No, but I want to report a bug",
+
+"The message %1 is caused by the file migration limit being reached.": "The message %1 is caused by the file migration limit being reached.",
+
+"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.": "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.",
+
+"Sbie Message Code": "Sbie Message Code",
+"Name affected process": "Name affected process",
+"Please enter the SBIEMSG ID you have encountered.": "Please enter the SBIEMSG ID you have encountered.",
+"There is no automated troubleshooting available for SBIE%1 yet. ": "There is no automated troubleshooting available for SBIE%1 yet. ",
+"The full message text is: %1 ": "The full message text is: %1 ",
+"Visit out online-documentation to learn more about this, and other sbie messages.": "Visit out online-documentation to learn more about this, and other sbie messages.",
+"Would you like to collect some logs to help us resolve the issue.": "Would you like to collect some logs to help us resolve the issue.",
+"Now please run your application again to trigger the Sbie message. ": "Now please run your application again to trigger the Sbie message. ",
+"Press NEXT when you are done collecting logs.": "Press NEXT when you are done collecting logs."
+}
diff --git a/SandboxiePlus/SandMan/sandman_ja.ts b/SandboxiePlus/SandMan/sandman_ja.ts
new file mode 100644
index 00000000..db9010c6
--- /dev/null
+++ b/SandboxiePlus/SandMan/sandman_ja.ts
@@ -0,0 +1,8723 @@
+
+
+
+
+ BoxImageWindow
+
+
+ Form
+
+
+
+
+ kilobytes
+
+
+
+
+ Protect Box Root from access by unsandboxed processes
+
+
+
+
+
+ TextLabel
+
+
+
+
+ Show Password
+
+
+
+
+ Enter Password
+
+
+
+
+ New Password
+
+
+
+
+ Repeat Password
+
+
+
+
+ Disk Image Size
+
+
+
+
+ Encryption Cipher
+
+
+
+
+ CAddonManager
+
+
+ Do you want to download and install %1?
+
+
+
+
+ Installing: %1
+
+
+
+
+ Do you want to remove %1?
+
+
+
+
+ Removing: %1
+
+
+
+
+ Add-on not found, please try updating the add-on list in the global settings!
+
+
+
+
+ Add-on not found!
+
+
+
+
+ Add-on Not Found
+
+
+
+
+ Add-on is not available for this platform
+
+
+
+
+ Missing installation instructions
+
+
+
+
+ Executing add-on setup failed
+
+
+
+
+ Failed to delete a file during add-on removal
+
+
+
+
+ Updater failed to perform add-on operation
+
+
+
+
+ Updater failed to perform add-on operation, error: %1
+
+
+
+
+ CAdvancedPage
+
+
+ Advanced Sandbox options
+
+
+
+
+ On this page advanced sandbox options can be configured.
+
+
+
+
+ Network Access
+
+
+
+
+ Allow network/internet access
+
+
+
+
+ Block network/internet by denying access to Network devices
+
+
+
+
+ Block network/internet using Windows Filtering Platform
+
+
+
+
+ Allow access to network files and folders
+
+
+
+
+
+ This option is not recommended for Hardened boxes
+
+
+
+
+ Admin Options
+
+
+
+
+ Make applications think they are running elevated
+
+
+
+
+ Allow MSIServer to run with a sandboxed system token
+
+
+
+
+ Box Options
+
+
+
+
+ Use a Sandboxie login instead of an anonymous token
+
+
+
+
+ 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.
+
+
+
+
+ Prevent sandboxes programs installed on host from loading dll's from the sandbox
+
+
+
+
+ This feature may reduce compatibility as it also prevents box located processes from writing to host located ones and even starting them.
+
+
+
+
+ CBeginPage
+
+
+ Troubleshooting Wizard
+
+
+
+
+ Welcome to the Troubleshooting Wizard for Sandboxie-Plus. This interactive assistant is designed to help you in resolving sandboxing issues.
+
+
+
+
+ With a valid <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a> the wizard would be even more powerful. It could access the <a href="https://sandboxie-plus.com/go.php?to=sbie-issue-db">online solution database</a> to retrieve the latest troubleshooting instructions.
+
+
+
+
+ Another issue
+
+
+
+
+ CBoxAssistant
+
+
+ Troubleshooting Wizard
+
+
+
+
+ Toggle Debugger
+
+
+
+
+ To debug troubleshooting scripts you need the V4 Script Debugger add-on, do you want to download and install it?
+
+
+
+
+ Debugger Enabled
+
+
+
+
+ V4ScriptDebuggerBackend could not be instantiated, probably V4ScriptDebugger.dll and or its dependencies are missing, script debugger could not be opened.
+
+
+
+
+ A troubleshooting procedure is in progress, canceling the wizard will abort it, this may leave the sandbox in an inconsistent state.
+
+
+
+
+ Don't ask in future
+
+
+
+
+ CBoxEngine
+
+
+ Uncaught exception at line %1: %2
+
+
+
+
+ CBoxImageWindow
+
+
+ Sandboxie-Plus - Password Entry
+
+
+
+
+ Creating new box image, please enter a secure password, and choose a disk image size.
+
+
+
+
+ Enter Box Image password:
+
+
+
+
+ Enter Box Image passwords:
+
+
+
+
+ Enter Encryption passwords for archive export:
+
+
+
+
+ Enter Encryption passwords for archive import:
+
+
+
+
+ kilobytes (%1)
+
+
+
+
+ Passwords don't match!!!
+
+
+
+
+ WARNING: Short passwords are easy to crack using brute force techniques!
+
+It is recommended to choose a password consisting of 20 or more characters. Are you sure you want to use a short password?
+
+
+
+
+ The Box Disk Image must be at least 256 MB in size, 2GB are recommended.
+
+
+
+
+ CBoxPicker
+
+
+ Sandbox
+
+
+
+
+ CBoxTypePage
+
+
+ Create new Sandbox
+
+
+
+
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer.
+
+
+
+
+ A sandbox isolates your host system from processes running within the box, it prevents them from making permanent changes to other programs and data in your computer. The level of isolation impacts your security as well as the compatibility with applications, hence there will be a different level of isolation depending on the selected Box Type. Sandboxie can also protect your personal data from being accessed by processes running under its supervision.
+
+
+
+
+ Enter box name:
+
+
+
+
+ Select box type:
+
+
+
+
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a>
+
+
+
+
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.
+It strictly limits access to user data, allowing processes within this box to only access C:\Windows and C:\Program Files directories.
+The entire user profile remains hidden, ensuring maximum security.
+
+
+
+
+ <a href="sbie://docs/security-mode">Security Hardened</a> Sandbox
+
+
+
+
+ This box type offers the highest level of protection by significantly reducing the attack surface exposed to sandboxed processes.
+
+
+
+
+ Sandbox with <a href="sbie://docs/privacy-mode">Data Protection</a>
+
+
+
+
+ In this box type, sandboxed processes are prevented from accessing any personal user files or data. The focus is on protecting user data, and as such,
+only C:\Windows and C:\Program Files directories are accessible to processes running within this sandbox. This ensures that personal files remain secure.
+
+
+
+
+ Standard Sandbox
+
+
+
+
+ This box type offers the default behavior of Sandboxie classic. It provides users with a familiar and reliable sandboxing scheme.
+Applications can be run within this sandbox, ensuring they operate within a controlled and isolated space.
+
+
+
+
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box with <a href="sbie://docs/privacy-mode">Data Protection</a>
+
+
+
+
+
+ This box type prioritizes compatibility while still providing a good level of isolation. It is designed for running trusted applications within separate compartments.
+While the level of isolation is reduced compared to other box types, it offers improved compatibility with a wide range of applications, ensuring smooth operation within the sandboxed environment.
+
+
+
+
+ <a href="sbie://docs/compartment-mode">Application Compartment</a> Box
+
+
+
+
+ <a href="sbie://docs/boxencryption">Encrypt</a> Box content and set <a href="sbie://docs/black-box">Confidential</a>
+
+
+
+
+ In this box type the sandbox uses an encrypted disk image as its root folder. This provides an additional layer of privacy and security.
+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.
+
+
+
+
+ Hardened Sandbox with Data Protection
+
+
+
+
+ Security Hardened Sandbox
+
+
+
+
+ Sandbox with Data Protection
+
+
+
+
+ Standard Isolation Sandbox (Default)
+
+
+
+
+ Application Compartment with Data Protection
+
+
+
+
+ Application Compartment Box
+
+
+
+
+ Confidential Encrypted Box
+
+
+
+
+ Remove after use
+
+
+
+
+ After the last process in the box terminates, all data in the box will be deleted and the box itself will be removed.
+
+
+
+
+ Configure advanced options
+
+
+
+
+ To use encrypted boxes you need to install the ImDisk driver, do you want to download and install it?
+
+
+
+
+ CBrowserOptionsPage
+
+
+ Create Web Browser Template
+
+
+
+
+ Configure web browser template options.
+
+
+
+
+ Force the Web Browser to run in this sandbox
+
+
+
+
+ Allow direct access to the entire Web Browser profile folder
+
+
+
+
+ Allow direct access to Web Browser's phishing database
+
+
+
+
+ Allow direct access to Web Browser's session management
+
+
+
+
+ Allow direct access to Web Browser's sync data
+
+
+
+
+ Allow direct access to Web Browser's preferences
+
+
+
+
+ Allow direct access to Web Browser's passwords
+
+
+
+
+ Allow direct access to Web Browser's cookies
+
+
+
+
+ Allow direct access to Web Browser's bookmarks
+
+
+
+
+ Allow direct access to Web Browser's bookmark and history database
+
+
+
+
+ CBrowserPathsPage
+
+
+ Create Web Browser Template
+
+
+
+
+ Configure your Web Browser's profile directories.
+
+
+
+
+ User profile(s) directory:
+
+
+
+
+ Show also imperfect matches
+
+
+
+
+ Browser Executable (*.exe)
+
+
+
+
+ Continue without browser profile
+
+
+
+
+ Configure your Gecko based Browsers profile directories.
+
+
+
+
+ Configure your Chromium based Browsers profile directories.
+
+
+
+
+ No suitable folders have been found.
+Note: you need to run the browser unsandboxed for them to get created.
+Please browse to the correct user profile directory.
+
+
+
+
+ Please choose the correct user profile directory, if it is not listed you may need to browse to it.
+
+
+
+
+ Please ensure the selected directory is correct, the wizard is not confident in all the presented options.
+
+
+
+
+ Please ensure the selected directory is correct.
+
+
+
+
+ This path does not look like a valid profile directory.
+
+
+
+
+ CBrowserTypePage
+
+
+ Create Web Browser Template
+
+
+
+
+ Select your Web Browsers main executable, this will allow Sandboxie to identify the browser.
+
+
+
+
+ Enter browser name:
+
+
+
+
+ Main executable (eg. firefox.exe, chrome.exe, msedge.exe, etc...):
+
+
+
+
+ Browser executable (*.exe)
+
+
+
+
+ The browser appears to be Gecko based, like Mozilla Firefox and its derivatives.
+
+
+
+
+ The browser appears to be Chromium based, like Microsoft Edge or Google Chrome and its derivatives.
+
+
+
+
+ Browser could not be recognized, template cannot be created.
+
+
+
+
+ This browser name is already in use, please choose an other one.
+
+
+
+
+ CCertificatePage
+
+
+ Install your <b>Sandboxie-Plus</b> support certificate
+
+
+
+
+ If you have a supporter certificate, please fill it into the field below.
+
+
+
+
+ Retrieve certificate using Serial Number:
+
+
+
+
+ Start evaluation without a certificate for a limited period of time.
+
+
+
+
+ To use <b>Sandboxie-Plus</b> in a business setting, an appropriate <a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">support certificate</a> for business use is required. If you do not yet have the required certificate(s), you can get those from the <a href="https://xanasoft.com/shop/">xanasoft.com web shop</a>.
+
+
+
+
+ <b>Sandboxie-Plus</b> provides additional features and box types exclusively to <u>project supporters</u>. Boxes like the Privacy Enhanced boxes <b><font color='red'>protect user data from illicit access</font></b> by the sandboxed programs. If you are not yet a supporter, then please consider <a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">supporting the project</a> to ensure further development of Sandboxie and to receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>.
+
+
+
+
+ Failed to retrieve the certificate.
+
+
+
+
+
+Error: %1
+
+
+
+
+ Retrieving certificate...
+
+
+
+
+ CCleanUpJob
+
+
+ Deleting Content
+
+
+
+
+ CCompletePage
+
+
+ Troubleshooting Completed
+
+
+
+
+ Thank you for using the Troubleshooting Wizard for Sandboxie-Plus. We apologize for any inconvenience you experienced during the process. If you have any additional questions or need further assistance, please don't hesitate to reach out. We're here to help. Thank you for your understanding and cooperation.
+
+You can click Finish to close this wizard.
+
+
+
+
+ CCompressDialog
+
+
+ Sandboxie-Plus - Sandbox Export
+
+
+
+
+ Store
+
+
+
+
+ Fastest
+
+
+
+
+ Fast
+
+
+
+
+ Normal
+
+
+
+
+ Maximum
+
+
+
+
+ Ultra
+
+
+
+
+ CFileBrowserWindow
+
+
+ %1 - Files
+
+
+
+
+ CFileView
+
+
+ Create Shortcut
+
+
+
+
+ Pin to Box Run Menu
+
+
+
+
+ Recover to Any Folder
+
+
+
+
+ Recover to Same Folder
+
+
+
+
+ Run Recovery Checks
+
+
+
+
+ Select Directory
+
+
+
+
+ Create Shortcut to sandbox %1
+
+
+
+
+ CFilesPage
+
+
+ Sandbox location and behavior
+
+
+
+
+ On this page the sandbox location and its behavior can be customized.
+You can use %USER% to save each users sandbox to an own folder.
+
+
+
+
+ Sandboxed Files
+
+
+
+
+ Select Directory
+
+
+
+
+ Virtualization scheme
+
+
+
+
+ Version 1
+
+
+
+
+ Version 2
+
+
+
+
+ Separate user folders
+
+
+
+
+ Use volume serial numbers for drives
+
+
+
+
+ Auto delete content when last process terminates
+
+
+
+
+ Enable Immediate Recovery of files from recovery locations
+
+
+
+
+ The selected box location is not a valid path.
+
+
+
+
+ The selected box location exists and is not empty, it is recommended to pick a new or empty folder. Are you sure you want to use an existing folder?
+
+
+
+
+ The selected box location is not placed on a currently available drive.
+
+
+
+
+ CFinishPage
+
+
+ Complete your configuration
+
+
+
+
+ Almost complete, click Finish to apply all selected options and conclude the wizard.
+
+
+
+
+ CFinishTemplatePage
+
+
+ Create Web Browser Template
+
+
+
+
+ Almost complete, click Finish to create a new Web Browser Template and conclude the wizard.
+
+
+
+
+ Browser name: %1
+
+
+
+
+
+ Browser Type: Gecko (Mozilla Firefox)
+
+
+
+
+
+ Browser Type: Chromium (Google Chrome)
+
+
+
+
+
+
+
+
+
+
+
+ Browser executable path: %1
+
+
+
+
+
+ Browser profile path: %1
+
+
+
+
+
+ CGetFileJob
+
+
+ Failed to download file from: %1
+
+
+
+
+ CGroupPage
+
+
+ Select issue from group
+
+
+
+
+ Please specify the exact issue:
+
+
+
+
+ Another issue
+
+
+
+
+ CIntroPage
+
+
+ Introduction
+
+
+
+
+ Welcome to the Setup Wizard. This wizard will help you to configure your copy of <b>Sandboxie-Plus</b>. You can start this wizard at any time from the Sandbox->Maintenance menu if you do not wish to complete it now.
+
+
+
+
+ Select how you would like to use Sandboxie-Plus
+
+
+
+
+ &Personally, for private non-commercial use
+
+
+
+
+ &Commercially, for business or enterprise use
+
+
+
+
+ Note: this option is persistent
+
+
+
+
+ CListPage
+
+
+ Select issue from full list
+
+
+
+
+ Search filter
+
+
+
+
+ None of the above
+
+
+
+
+ CMonitorModel
+
+
+ Type
+
+
+
+
+ Status
+
+
+
+
+ Value
+
+
+
+
+ Count
+
+
+
+
+ CMultiErrorDialog
+
+
+ Sandboxie-Plus - Error
+
+
+
+
+ Message
+
+
+
+
+ CNewBoxWizard
+
+
+ New Box Wizard
+
+
+
+
+ This sandbox content will be placed in an encrypted container file, please note that any corruption of the container'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 <b>No Backup No Mercy</b> policy, YOU the user are responsible for the data you put into an encrypted box. <br /><br />IF YOU AGREE TO TAKE FULL RESPONSIBILITY FOR YOUR DATA PRESS [YES], OTHERWISE PRESS [NO].
+
+
+
+
+
+ Don't show this message again.
+
+
+
+
+ The new sandbox has been created using the new <a href="https://sandboxie-plus.com/go.php?to=sbie-delete-v2">Virtualization Scheme Version 2</a>, if you experience any unexpected issues with this box, please switch to the Virtualization Scheme to Version 1 and report the issue, the option to change this preset can be found in the Box Options in the Box Structure group.
+
+
+
+
+ COnDeleteJob
+
+
+ OnDelete: %1
+
+
+
+
+ COnlineUpdater
+
+
+ Your Sandboxie-Plus supporter certificate is expired, however for the current build you are using it remains active, when you update to a newer build exclusive supporter features will be disabled.
+
+Do you still want to update?
+
+
+
+
+ Do you want to check if there is a new version of Sandboxie-Plus?
+
+
+
+
+ Don't show this message again.
+
+
+
+
+ Checking for updates...
+
+
+
+
+ server not reachable
+
+
+
+
+
+ Failed to check for updates, error: %1
+
+
+
+
+ No new updates found, your Sandboxie-Plus is up-to-date.
+
+Note: The update check is often behind the latest GitHub release to ensure that only tested updates are offered.
+
+
+
+
+ <p>There is a new version of Sandboxie-Plus available.<br /><font color='red'><b>New version:</b></font> <b>%1</b></p>
+
+
+
+
+ <p>Do you want to download the installer?</p>
+
+
+
+
+ <p>Do you want to download the updates?</p>
+
+
+
+
+ <p>Do you want to go to the <a href="%1">download page</a>?</p>
+
+
+
+
+ Don't show this update anymore.
+
+
+
+
+ Downloading updates...
+
+
+
+
+ invalid parameter
+
+
+
+
+ failed to download updated information
+
+
+
+
+ failed to load updated json file
+
+
+
+
+ failed to download a particular file
+
+
+
+
+ failed to scan existing installation
+
+
+
+
+ updated signature is invalid !!!
+
+
+
+
+ downloaded file is corrupted
+
+
+
+
+ internal error
+
+
+
+
+ unknown error
+
+
+
+
+ Failed to download updates from server, error %1
+
+
+
+
+ <p>Updates for Sandboxie-Plus have been downloaded.</p><p>Do you want to apply these updates? If any programs are running sandboxed, they will be terminated.</p>
+
+
+
+
+ Downloading installer...
+
+
+
+
+ <p>A new Sandboxie-Plus installer has been downloaded to the following location:</p><p><a href="%2">%1</a></p><p>Do you want to begin the installation? If any programs are running sandboxed, they will be terminated.</p>
+
+
+
+
+ <p>Do you want to go to the <a href="%1">info page</a>?</p>
+
+
+
+
+ Don't show this announcement in the future.
+
+
+
+
+ COptionsWindow
+
+
+ Sandboxie Plus - '%1' Options
+
+
+
+
+ File Options
+
+
+
+
+ Grouping
+
+
+
+
+
+
+ Browse for File
+
+
+
+
+ Add %1 Template
+
+
+
+
+ Search for options
+
+
+
+
+ Box: %1
+
+
+
+
+ Template: %1
+
+
+
+
+ Global: %1
+
+
+
+
+ Default: %1
+
+
+
+
+ This sandbox has been deleted hence configuration can not be saved.
+
+
+
+
+ Some changes haven't been saved yet, do you really want to close this options window?
+
+
+
+
+
+
+
+
+
+
+
+
+ Group: %1
+
+
+
+
+
+
+
+
+
+
+
+
+
+ All Programs
+
+
+
+
+ Enter program:
+
+
+
+
+ Browse for Folder
+
+
+
+
+ Normal
+
+
+
+
+ Open
+
+
+
+
+ Open for All
+
+
+
+
+ No Rename
+
+
+
+
+ Closed
+
+
+
+
+ Closed RT
+
+
+
+
+ Read Only
+
+
+
+
+ Box Only (Write Only)
+
+
+
+
+ Ignore UIPI
+
+
+
+
+
+
+ Unknown
+
+
+
+
+ Regular Sandboxie behavior - allow read and also copy on write.
+
+
+
+
+ Allow write-access outside the sandbox.
+
+
+
+
+ Allow write-access outside the sandbox, also for applications installed inside the sandbox.
+
+
+
+
+ Don't rename window classes.
+
+
+
+
+ Deny access to host location and prevent creation of sandboxed copies.
+
+
+
+
+ Block access to WinRT class.
+
+
+
+
+ Allow read-only access only.
+
+
+
+
+ Hide host files, folders or registry keys from sandboxed processes.
+
+
+
+
+ Ignore UIPI restrictions for processes.
+
+
+
+
+ File/Folder
+
+
+
+
+ Registry
+
+
+
+
+ IPC Path
+
+
+
+
+ Wnd Class
+
+
+
+
+ COM Object
+
+
+
+
+ Select File
+
+
+
+
+ All Files (*.*)
+
+
+
+
+
+
+
+
+ Select Directory
+
+
+
+
+ COM objects must be specified by their GUID, like: {00000000-0000-0000-0000-000000000000}
+
+
+
+
+ RT interfaces must be specified by their name.
+
+
+
+
+ Opening all IPC access also opens COM access, do you still want to restrict COM to the sandbox?
+
+
+
+
+ Don't ask in future
+
+
+
+
+ 'OpenWinClass=program.exe,#' is not supported, use 'NoRenameWinClass=program.exe,*' instead
+
+
+
+
+
+
+
+
+
+ Template values can not be edited.
+
+
+
+
+ Template values can not be removed.
+
+
+
+
+ Enable the use of win32 hooks for selected processes. Note: You need to enable win32k syscall hook support globally first.
+
+
+
+
+ Enable crash dump creation in the sandbox folder
+
+
+
+
+ Always use ElevateCreateProcess fix, as sometimes applied by the Program Compatibility Assistant.
+
+
+
+
+ Enable special inconsistent PreferExternalManifest behaviour, as needed for some Edge fixes
+
+
+
+
+ Set RpcMgmtSetComTimeout usage for specific processes
+
+
+
+
+ Makes a write open call to a file that won't be copied fail instead of turning it read-only.
+
+
+
+
+ Make specified processes think they have admin permissions.
+
+
+
+
+ Force specified processes to wait for a debugger to attach.
+
+
+
+
+ Sandbox file system root
+
+
+
+
+ Sandbox registry root
+
+
+
+
+ Sandbox ipc root
+
+
+
+
+ Add special option:
+
+
+
+
+
+ On Start
+
+
+
+
+
+
+
+ Run Command
+
+
+
+
+ Start Service
+
+
+
+
+ On Init
+
+
+
+
+ On File Recovery
+
+
+
+
+ On Delete Content
+
+
+
+
+
+
+
+ Please enter the command line to be executed
+
+
+
+
+ Please enter a service identifier
+
+
+
+
+ Please enter a program file name to allow access to this sandbox
+
+
+
+
+ Please enter a program file name to deny access to this sandbox
+
+
+
+
+ Deny
+
+
+
+
+
+
+ Allow
+
+
+
+
+ %1 (%2)
+
+
+
+
+
+ Process
+
+
+
+
+
+ Folder
+
+
+
+
+
+ Select Executable File
+
+
+
+
+
+ Executable Files (*.exe)
+
+
+
+
+ Forcing the specified entry will most likely break Windows, are you sure you want to proceed?
+
+
+
+
+ This option requires an active <b>advanced</b> supporter certificate
+
+
+
+
+ This option requires an active supporter certificate
+
+
+
+
+ Don't alter the window title
+
+
+
+
+ Display [#] indicator only
+
+
+
+
+ Display box name in title
+
+
+
+
+ Border disabled
+
+
+
+
+ Show only when title is in focus
+
+
+
+
+ Always show
+
+
+
+
+ Hardened Sandbox with Data Protection
+
+
+
+
+ Security Hardened Sandbox
+
+
+
+
+ Sandbox with Data Protection
+
+
+
+
+ Standard Isolation Sandbox (Default)
+
+
+
+
+ Application Compartment with Data Protection
+
+
+
+
+ Application Compartment
+
+
+
+
+ Custom icon
+
+
+
+
+ Version 1
+
+
+
+
+ Version 2
+
+
+
+
+ Browse for Program
+
+
+
+
+ Open Box Options
+
+
+
+
+ Browse Content
+
+
+
+
+ Start File Recovery
+
+
+
+
+ Show Run Dialog
+
+
+
+
+ Indeterminate
+
+
+
+
+ Backup Image Header
+
+
+
+
+ Restore Image Header
+
+
+
+
+ Change Password
+
+
+
+
+
+ Always copy
+
+
+
+
+
+ Don't copy
+
+
+
+
+
+ Copy empty
+
+
+
+
+ kilobytes (%1)
+
+
+
+
+ Select color
+
+
+
+
+ Select Program
+
+
+
+
+ Executables (*.exe *.cmd)
+
+
+
+
+
+ Please enter a menu title
+
+
+
+
+ Please enter a command
+
+
+
+
+ The image file does not exist
+
+
+
+
+ The password is wrong
+
+
+
+
+ Unexpected error: %1
+
+
+
+
+ Image Password Changed
+
+
+
+
+ Backup Image Header for %1
+
+
+
+
+ Image Header Backuped
+
+
+
+
+ Restore Image Header for %1
+
+
+
+
+ Image Header Restored
+
+
+
+
+ Please enter a name for the new group
+
+
+
+
+ Please select group first.
+
+
+
+
+
+ Any
+
+
+
+
+
+ TCP
+
+
+
+
+
+ UDP
+
+
+
+
+
+ ICMP
+
+
+
+
+ Allow access
+
+
+
+
+ Block using Windows Filtering Platform
+
+
+
+
+ Block by denying access to Network devices
+
+
+
+
+ Block (WFP)
+
+
+
+
+ Block (NDev)
+
+
+
+
+ A non empty program name is required.
+
+
+
+
+ Block
+
+
+
+
+ Please enter a file extension to be excluded
+
+
+
+
+ All Categories
+
+
+
+
+ Custom Templates
+
+
+
+
+ Email Reader
+
+
+
+
+ PDF/Print
+
+
+
+
+ Security/Privacy
+
+
+
+
+ Desktop Utilities
+
+
+
+
+ Download Managers
+
+
+
+
+ Miscellaneous
+
+
+
+
+ Web Browser
+
+
+
+
+ Media Player
+
+
+
+
+ Torrent Client
+
+
+
+
+ This template is enabled globally. To configure it, use the global options.
+
+
+
+
+ Please enter the template identifier
+
+
+
+
+ Error: %1
+
+
+
+
+ Do you really want to delete the selected local template(s)?
+
+
+
+
+ Only local templates can be removed!
+
+
+
+
+ An alternate location for '%1'
+should contain the following file:
+
+%2
+
+The selected location does not contain this file.
+Please select a folder which contains this file.
+
+
+
+
+ CPopUpMessage
+
+
+ ?
+
+
+
+
+ Visit %1 for a detailed explanation.
+
+
+
+
+ Troubleshooting
+
+
+
+
+ Start troubleshooting wizard
+
+
+
+
+ Dismiss
+
+
+
+
+ Remove this message from the list
+
+
+
+
+ Hide all such messages
+
+
+
+
+ (%1)
+
+
+
+
+ CPopUpProgress
+
+
+ Dismiss
+
+
+
+
+ Remove this progress indicator from the list
+
+
+
+
+ CPopUpPrompt
+
+
+ Remember for this process
+
+
+
+
+ Yes
+
+
+
+
+ No
+
+
+
+
+ Terminate
+
+
+
+
+ Yes and add to allowed programs
+
+
+
+
+ Requesting process terminated
+
+
+
+
+ Request will time out in %1 sec
+
+
+
+
+ Request timed out
+
+
+
+
+ CPopUpRecovery
+
+
+ Recover to:
+
+
+
+
+ Browse
+
+
+
+
+ Clear folder list
+
+
+
+
+ Recover
+
+
+
+
+ Recover the file to original location
+
+
+
+
+ Recover && Explore
+
+
+
+
+ Recover && Open/Run
+
+
+
+
+ Open file recovery for this box
+
+
+
+
+ Dismiss
+
+
+
+
+ Don't recover this file right now
+
+
+
+
+ Dismiss all from this box
+
+
+
+
+ Disable quick recovery until the box restarts
+
+
+
+
+ Select Directory
+
+
+
+
+ CPopUpWindow
+
+
+ Sandboxie-Plus Notifications
+
+
+
+
+ Do you want to allow the print spooler to write outside the sandbox for %1 (%2)?
+
+
+
+
+ Do you want to allow %4 (%5) to copy a %1 large file into sandbox: %2?
+File name: %3
+
+
+
+
+ Do you want to allow %1 (%2) access to the internet?
+Full path: %3
+
+
+
+
+ %1 is eligible for quick recovery from %2.
+The file was written by: %3
+
+
+
+
+ an UNKNOWN process.
+
+
+
+
+ %1 (%2)
+
+
+
+
+
+ UNKNOWN
+
+
+
+
+ Migrating a large file %1 into the sandbox %2, %3 left.
+Full path: %4
+
+
+
+
+ CRecoveryLogWnd
+
+
+ Sandboxie-Plus - Recovery Log
+ Sandboxie-Plus - リカバリログ
+
+
+
+ Time|Box Name|File Path
+ 日時|ボックス名|ファイルパス
+
+
+
+ Cleanup Recovery Log
+ リカバリログをクリーン
+
+
+
+ The following files were recently recovered and moved out of a sandbox.
+
+
+
+
+ CRecoveryWindow
+
+
+ %1 - File Recovery
+ %1 - ファイルリカバリ
+
+
+
+ File Name
+ ファイル名
+
+
+
+ File Size
+ ファイルサイズ
+
+
+
+ Full Path
+ フルパス
+
+
+
+ Remember target selection
+ ターゲット選択を記憶する
+
+
+
+ Delete everything, including all snapshots
+ スナップショットを含め、全てを削除する
+
+
+
+ Original location
+ 同じフォルダに回復
+
+
+
+ Browse for location
+ 回復するフォルダを選択
+
+
+
+ Clear folder list
+ フォルダリストをクリア
+
+
+
+
+
+ Select Directory
+ ディレクトリの選択
+
+
+
+ Do you really want to delete %1 selected files?
+ 選択した %1 ファイルを削除します。本当によろしいですか?
+
+
+
+ Close until all programs stop in this box
+ このサンドボックスのすべてのプログラムが停止するまでの間、直接リカバリのメッセージを表示しない
+
+
+
+ Close and Disable Immediate Recovery for this box
+ このボックスに対する直接リカバリを無効化して閉じる
+
+
+
+ There are %1 new files available to recover.
+ リカバリ可能なファイルが新しく %1 個あります。
+
+
+
+ Recovering File(s)...
+
+
+
+
+ There are %1 files and %2 folders in the sandbox, occupying %3 of disk space.
+ サンドボックス内に %1 個のファイルと %2 個のフォルダがあり、ディスク容量を %3 消費しています。
+
+
+
+ CRunPage
+
+
+ Troubleshooting ...
+
+
+
+
+ This troubleshooting procedure could not be initialized. You can click on next to submit an issue report.
+
+
+
+
+ Something failed internally this troubleshooting procedure can not continue. You can click on next to submit an issue report.
+
+
+
+
+
+
+Error:
+
+
+
+
+ CSBUpdate
+
+
+ Configure <b>Sandboxie-Plus</b> updater
+
+
+
+
+ Like with any other security product, it's important to keep your Sandboxie-Plus up to date.
+
+
+
+
+ Regularly check for all updates to Sandboxie-Plus and optional components
+
+
+
+
+ Let Sandboxie regularly check for latest updates.
+
+
+
+
+ Check for new Sandboxie-Plus versions:
+
+
+
+
+ Check for new Sandboxie-Plus builds.
+
+
+
+
+ Select in which update channel to look for new Sandboxie-Plus builds:
+
+
+
+
+ In the Stable Channel
+
+
+
+
+ The stable channel contains the latest stable GitHub releases.
+
+
+
+
+ In the Preview Channel - with newest experimental changes
+
+
+
+
+ The preview channel contains the latest GitHub pre-releases.
+
+
+
+
+ In the Insider Channel - exclusive features
+
+
+
+
+ The Insider channel offers early access to new features and bugfixes that will eventually be released to the public, as well as all relevant improvements from the stable channel.
+Unlike the preview channel, it does not include untested, potentially breaking, or experimental changes that may not be ready for wider use.
+
+
+
+
+ More about the <a href="https://sandboxie-plus.com/go.php?to=sbie-insider">Insider Channel</a>
+
+
+
+
+ Keep Compatibility Templates up to date and apply hotfixes
+
+
+
+
+ Check for latest compatibility templates and hotfixes.
+
+
+
+
+ Get the latest Scripts for the Troubleshooting Wizard
+
+
+
+
+ Check for latest troubleshooting scripts for the troubleshooting wizard.
+
+
+
+
+ Keep the list of optional Add-on components up to date
+
+
+
+
+ Check for latest available add-ons.
+
+
+
+
+ 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.
+
+
+
+
+ Access to the latest compatibility templates and the online troubleshooting database requires a valid <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>.
+
+
+
+
+ CSandBox
+
+
+ Waiting for folder: %1
+
+
+
+
+ Deleting folder: %1
+
+
+
+
+ Merging folders: %1 >> %2
+
+
+
+
+ Finishing Snapshot Merge...
+
+
+
+
+ CSandBoxPlus
+
+
+ Disabled
+
+
+
+
+ OPEN Root Access
+
+
+
+
+ Application Compartment
+
+
+
+
+ NOT SECURE
+
+
+
+
+ Reduced Isolation
+
+
+
+
+ Enhanced Isolation
+
+
+
+
+ Privacy Enhanced
+
+
+
+
+ No INet (with Exceptions)
+
+
+
+
+ No INet
+
+
+
+
+ Net Share
+
+
+
+
+ No Admin
+
+
+
+
+ Auto Delete
+
+
+
+
+ Normal
+
+
+
+
+ CSandMan
+
+
+ WARNING: Sandboxie-Plus.ini in %1 cannot be written to, settings will not be saved.
+
+
+
+
+
+ Sandboxie-Plus Insider [%1]
+
+
+
+
+
+ Sandboxie-Plus v%1
+ Sandboxie-Plus v%1
+
+
+
+ &Maintenance
+ メンテナンス(&M)
+
+
+
+ Connect
+ 接続
+
+
+
+ Disconnect
+ 切断
+
+
+
+ Stop All
+
+
+
+
+ &Advanced
+
+
+
+
+ Install Driver
+
+
+
+
+ Start Driver
+
+
+
+
+ Stop Driver
+
+
+
+
+ Uninstall Driver
+
+
+
+
+ Install Service
+
+
+
+
+ Start Service
+
+
+
+
+ Stop Service
+
+
+
+
+ Uninstall Service
+
+
+
+
+ Virtual Disks
+ 仮想ディスク
+
+
+
+ Setup Wizard
+ セットアップウィザード
+
+
+
+ Uninstall All
+
+
+
+
+ Simple View
+ シンプルビュー
+
+
+
+ Advanced View
+ アドバンスビュー
+
+
+
+ Vintage View (like SbieCtrl)
+ クラシック表示
+
+
+
+ Always on Top
+ 常に手前に表示
+
+
+
+ &Help
+ ヘルプ(&H)
+
+
+
+ Contribute to Sandboxie-Plus
+ Sandboxie-Plus に貢献する
+
+
+
+ Troubleshooting Wizard
+
+
+
+
+ Online Documentation
+ ヘルプトピック(Web)
+
+
+
+ Visit Support Forum
+ サポートフォーラムにアクセス
+
+
+
+ Check for Updates
+ アップデートを確認
+
+
+
+ About the Qt Framework
+ Qt フレームワークについて
+
+
+
+
+ About Sandboxie-Plus
+ Sandboxie-Plus について
+
+
+
+
+ &Sandbox
+ サンドボックス(&S)
+
+
+
+
+
+ Create New Box
+ 新規にサンドボックスを作成
+
+
+
+ Create Box Group
+ 新規にグループを作成
+
+
+
+ Import Box
+ ボックスのインポート
+
+
+
+
+ Run Sandboxed
+ サンドボックス化して実行
+
+
+
+
+ Terminate All Processes
+ 全てのプロセスを強制終了
+
+
+
+
+ Lock All Encrypted Boxes
+
+
+
+
+
+ Is Window Sandboxed?
+ ウィンドウがサンドボックス化されているか確認
+
+
+
+
+ Exit
+ 終了
+
+
+
+
+ &View
+ 表示(&V)
+
+
+
+ Show Hidden Boxes
+ 非表示のボックスを表示
+
+
+
+ Show All Sessions
+ 全てのセッションを表示
+
+
+
+ Show File Panel
+ ファイルパネルを表示
+
+
+
+ Refresh View
+ 表示を更新
+
+
+
+ Clean Up
+ クリーンアップ
+
+
+
+ Cleanup Processes
+ プロセスを掃除
+
+
+
+ Cleanup Message Log
+ メッセージログを掃除
+
+
+
+ Cleanup Trace Log
+ トレースログを掃除
+
+
+
+ Cleanup Recovery Log
+ リカバリログを掃除
+
+
+
+ Keep terminated
+
+
+
+
+ Trace Logging
+
+
+
+
+
+
+ Recovery Log
+ リカバリログ
+
+
+
+ &Options
+ 設定(&O)
+
+
+
+
+ Global Settings
+ グローバル設定
+
+
+
+
+
+
+ Pause Forcing Programs
+
+
+
+
+ Disable File Recovery
+ ファイルリカバリを無効
+
+
+
+ Disable Message Popup
+ ポップアップメッセージを無効
+
+
+
+
+
+
+ Edit Sandboxie.ini
+ 構成 Sandboxie.ini の編集
+
+
+
+ Edit Templates.ini
+ Templates.ini を編集
+
+
+
+ Edit Sandboxie-Plus.ini
+ Sandboxie-Plus.ini を編集
+
+
+
+
+ Reload configuration
+ 構成の再読み込み
+
+
+
+
+ Reset all hidden messages
+ 表示しないメッセージを忘れる
+
+
+
+
+ Reset all GUI options
+ 全ての GUI オプションをリセット
+
+
+
+ &File
+
+
+
+
+ Resource Access Monitor
+
+
+
+
+ Programs
+ プログラム
+
+
+
+ Files and Folders
+
+
+
+
+ Create New Sandbox
+ 新規にサンドボックスを作成
+
+
+
+ Create New Group
+ 新規にグループを作成
+
+
+
+ Import Sandbox
+ サンドボックスのインポート
+
+
+
+ Set Container Folder
+ コンテナフォルダの設定
+
+
+
+ Set Layout and Groups
+ レイアウトとグループの設定
+
+
+
+ Reveal Hidden Boxes
+
+
+
+
+ &Configure
+ 構成(&C)
+
+
+
+ Program Alerts
+ プログラム アラート
+
+
+
+ Windows Shell Integration
+ Windows シェル統合
+
+
+
+ Software Compatibility
+ ソフトウェア 互換性
+
+
+
+ Lock Configuration
+ 構成のロック
+
+
+
+ Sandbox %1
+ サンドボックス %1
+
+
+
+ New-Box Menu
+
+
+
+
+
+
+ Cleanup
+ クリーンアップ
+
+
+
+ Edit-ini Menu
+
+
+
+
+ Toolbar Items
+
+
+
+
+ Reset Toolbar
+
+
+
+
+ <a href="sbie://update/installer" style="color: red;">There is a new Sandboxie-Plus release %1 ready</a>
+
+
+
+
+ Click to run installer
+
+
+
+
+ <a href="sbie://update/apply" style="color: red;">There is a new Sandboxie-Plus update %1 ready</a>
+
+
+
+
+ Click to apply update
+
+
+
+
+ <a href="sbie://update/check" style="color: red;">There is a new Sandboxie-Plus update v%1 available</a>
+
+
+
+
+ Click to download update
+
+
+
+
+ <a href="https://sandboxie-plus.com/go.php?to=patreon">Support Sandboxie-Plus on Patreon</a>
+
+
+
+
+ Click to open web browser
+
+
+
+
+ Time|Message
+ 日時|メッセージ
+
+
+
+ Sbie Messages
+ Sbie メッセージ
+
+
+
+ Trace Log
+ トレースログ
+
+
+
+ Time|Box Name|File Path
+ 日時|ボックス名|ファイルパス
+
+
+
+ Do you want to close Sandboxie Manager?
+
+
+
+
+ Sandboxie-Plus was running in portable mode, now it has to clean up the created services. This will prompt for administrative privileges.
+
+Do you want to do the clean up?
+
+
+
+
+
+
+
+
+
+ Don't show this message again.
+
+
+
+
+ This box provides <a href="sbie://docs/security-mode">enhanced security isolation</a>, it is suitable to test untrusted software.
+
+
+
+
+ This box provides standard isolation, it is suitable to run your software to enhance security.
+
+
+
+
+ This box does not enforce isolation, it is intended to be used as an <a href="sbie://docs/compartment-mode">application compartment</a> for software virtualization only.
+
+
+
+
+ This box will be <a href="sbie://docs/boxencryption">encrypted</a> and <a href="sbie://docs/black-box">access to sandboxed processes will be guarded</a>.
+
+
+
+
+ <br /><br />This box <a href="sbie://docs/privacy-mode">prevents access to all user data</a> locations, except explicitly granted in the Resource Access options.
+
+
+
+
+ Unknown operation '%1' requested via command line
+
+
+
+
+ No Force Process
+
+
+
+
+ Some compatibility templates (%1) are missing, probably deleted, do you want to remove them from all boxes?
+
+
+
+
+ Cleaned up removed templates...
+
+
+
+
+ USB sandbox not found; creating: %1
+
+
+
+
+ Executing OnBoxDelete: %1
+
+
+
+
+ Auto Deleting %1 Content
+
+
+
+
+ Removed Shortcut: %1
+
+
+
+
+ Updated Shortcut to: %1
+
+
+
+
+ Added Shortcut to: %1
+
+
+
+
+ Auto deleting content of %1
+
+
+
+
+ Auto removing sandbox %1
+
+
+
+
+ %1 Directory: %2
+
+
+
+
+ Application
+
+
+
+
+ Installation
+
+
+
+
+ Sandboxie-Plus Version: %1 (%2)
+ Sandboxie-Plus Version: %1 (%2)
+
+
+
+ Current Config: %1
+
+
+
+
+ Data Directory: %1
+
+
+
+
+ Sandboxie-Plus was started in portable mode, do you want to put the Sandbox folder into its parent directory?
+Yes will choose: %1
+No will choose: %2
+
+
+
+
+ for Personal use
+
+
+
+
+ - for Non-Commercial use ONLY
+
+
+
+
+ Default sandbox not found; creating: %1
+
+
+
+
+ Do you want the setup wizard to be omitted?
+
+
+
+
+ - NOT connected
+
+
+
+
+
+
+ (%1)
+
+
+
+
+ The box %1 is configured to use features exclusively available to project supporters.
+
+
+
+
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>
+
+
+
+
+ The box %1 is configured to use features which require an <b>advanced</b> supporter certificate.
+
+
+
+
+
+ <br /><a href="https://sandboxie-plus.com/go.php?to=sbie-upgrade-cert">Upgrade your Certificate</a> to unlock advanced features.
+
+
+
+
+ The program %1 started in box %2 will be terminated in 5 minutes because the box was configured to use features exclusively available to project supporters.
+
+
+
+
+ The box %1 is configured to use features exclusively available to project supporters, these presets will be ignored.
+
+
+
+
+ The selected feature requires an <b>advanced</b> supporter certificate.
+
+
+
+
+ The selected feature set is only available to project supporters.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>
+
+
+
+
+ The selected feature set is only available to project supporters. Processes started in a box with this feature set enabled without a supporter certificate will be terminated after 5 minutes.<br /><a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">Become a project supporter</a>, and receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>
+
+
+
+
+ The certificate you are attempting to use has been blocked, meaning it has been invalidated for cause. Any attempt to use it constitutes a breach of its terms of use!
+
+
+
+
+ The Certificate Signature is invalid!
+
+
+
+
+ The Certificate is not suitable for this product.
+
+
+
+
+ The Certificate is node locked.
+
+
+
+
+ The support certificate is not valid.
+Error: %1
+
+
+
+
+ The evaluation period has expired!!!
+
+
+
+
+ The supporter certificate is not valid for this build, please get an updated certificate
+
+
+
+
+ The supporter certificate has expired%1, please get an updated certificate
+
+
+
+
+ , but it remains valid for the current build
+
+
+
+
+ The supporter certificate will expire in %1 days, please get an updated certificate
+
+
+
+
+ Only Administrators can change the config.
+
+
+
+
+ Please enter the configuration password.
+
+
+
+
+ Login Failed: %1
+
+
+
+
+ Do you want to terminate all processes in all sandboxes?
+
+
+
+
+
+ Don't ask in future
+
+
+
+
+ Do you want to terminate all processes in encrypted sandboxes, and unmount them?
+
+
+
+
+ Please enter the duration, in seconds, for disabling Forced Programs rules.
+ Forced Programs ルールを一時的に無効化する時間を秒単位で入力してください。
+
+
+
+ No Recovery
+
+
+
+
+ No Messages
+
+
+
+
+ Sandboxie-Plus was started in portable mode and it needs to create necessary services. This will prompt for administrative privileges.
+
+
+
+
+ CAUTION: Another agent (probably SbieCtrl.exe) is already managing this Sandboxie session, please close it first and reconnect to take over.
+
+
+
+
+ <b>ERROR:</b> The Sandboxie-Plus Manager (SandMan.exe) does not have a valid signature (SandMan.exe.sig). Please download a trusted release from the <a href="https://sandboxie-plus.com/go.php?to=sbie-get">official Download page</a>.
+
+
+
+
+
+
+ Sandboxie-Plus - Error
+
+
+
+
+ Failed to stop all Sandboxie components
+
+
+
+
+ Failed to start required Sandboxie components
+
+
+
+
+ Maintenance operation failed (%1)
+
+
+
+
+ Maintenance operation completed
+
+
+
+
+ Executing maintenance operation, please wait...
+
+
+
+
+ In the Plus UI, this functionality has been integrated into the main sandbox list view.
+
+
+
+
+ Using the box/group context menu, you can move boxes and groups to other groups. You can also use drag and drop to move the items around. Alternatively, you can also use the arrow keys while holding ALT down to move items up and down within their group.<br />You can create new boxes and groups from the Sandbox menu.
+
+
+
+
+ Do you also want to reset hidden message boxes (yes), or only all log messages (no)?
+
+
+
+
+ You are about to edit the Templates.ini, this is generally not recommended.
+This file is part of Sandboxie and all change done to it will be reverted next time Sandboxie is updated.
+
+
+
+
+ The changes will be applied automatically whenever the file gets saved.
+
+
+
+
+ The changes will be applied automatically as soon as the editor is closed.
+
+
+
+
+ Sandboxie config has been reloaded
+ Sandboxie 構成は再読み込みされました
+
+
+
+ Error Status: 0x%1 (%2)
+
+
+
+
+ Unknown
+
+
+
+
+ Administrator rights are required for this operation.
+ この操作には管理者権限が必要です。
+
+
+
+ Failed to execute: %1
+
+
+
+
+ Failed to connect to the driver
+
+
+
+
+ Failed to communicate with Sandboxie Service: %1
+
+
+
+
+ An incompatible Sandboxie %1 was found. Compatible versions: %2
+
+
+
+
+ Can't find Sandboxie installation path.
+
+
+
+
+ Failed to copy configuration from sandbox %1: %2
+
+
+
+
+ A sandbox of the name %1 already exists
+
+
+
+
+ Failed to delete sandbox %1: %2
+
+
+
+
+ The sandbox name can not be longer than 32 characters.
+
+
+
+
+ The sandbox name can not be a device name.
+
+
+
+
+ The sandbox name can contain only letters, digits and underscores which are displayed as spaces.
+
+
+
+
+ Failed to terminate all processes
+
+
+
+
+ Delete protection is enabled for the sandbox
+
+
+
+
+ All sandbox processes must be stopped before the box content can be deleted
+
+
+
+
+ Error deleting sandbox folder: %1
+
+
+
+
+ All processes in a sandbox must be stopped before it can be renamed.
+
+
+
+
+ A sandbox must be emptied before it can be deleted.
+
+
+
+
+ Failed to move directory '%1' to '%2'
+
+
+
+
+ Failed to move box image '%1' to '%2'
+
+
+
+
+ This Snapshot operation can not be performed while processes are still running in the box.
+
+
+
+
+ Failed to create directory for new snapshot
+
+
+
+
+ Failed to copy box data files
+
+
+
+
+ Snapshot not found
+
+
+
+
+ Error merging snapshot directories '%1' with '%2', the snapshot has not been fully merged.
+
+
+
+
+ Failed to remove old snapshot directory '%1'
+
+
+
+
+ Can't remove a snapshot that is shared by multiple later snapshots
+
+
+
+
+ Failed to remove old box data files
+
+
+
+
+ You are not authorized to update configuration in section '%1'
+
+
+
+
+ Failed to set configuration setting %1 in section %2: %3
+
+
+
+
+ Can not create snapshot of an empty sandbox
+
+
+
+
+ A sandbox with that name already exists
+
+
+
+
+ The config password must not be longer than 64 characters
+
+
+
+
+ The operation was canceled by the user
+
+
+
+
+ The content of an unmounted sandbox can not be deleted
+
+
+
+
+ %1
+
+
+
+
+ Import/Export not available, 7z.dll could not be loaded
+
+
+
+
+ Failed to create the box archive
+
+
+
+
+ Failed to open the 7z archive
+
+
+
+
+ Failed to unpack the box archive
+
+
+
+
+ The selected 7z file is NOT a box archive
+
+
+
+
+ Unknown Error Status: 0x%1
+
+
+
+
+ Operation failed for %1 item(s).
+
+
+
+
+ Do you want to open %1 in a sandboxed or unsandboxed Web browser?
+ %1 をサンドボックス化した、または、していないブラウザで開きますか?
+
+
+
+ Remember choice for later.
+
+
+
+
+ Sandboxed
+
+
+
+
+ Unsandboxed
+
+
+
+
+ Reset Columns
+ 列をリセット
+
+
+
+ Copy Cell
+
+
+
+
+ Copy Row
+
+
+
+
+ Copy Panel
+
+
+
+
+ Case Sensitive
+
+
+
+
+ RegExp
+
+
+
+
+ Highlight
+
+
+
+
+ Close
+
+
+
+
+ &Find ...
+
+
+
+
+ All columns
+
+
+
+
+ <h3>About Sandboxie-Plus</h3><p>Version %1</p><p>Copyright (c) 2020-2023 by DavidXanatos</p>
+
+
+
+
+ This copy of Sandboxie+ is certified for: %1
+
+
+
+
+ Sandboxie+ is free for personal and non-commercial use.
+
+
+
+
+ Sandboxie-Plus is an open source continuation of Sandboxie.<br />Visit <a href="https://sandboxie-plus.com">sandboxie-plus.com</a> for more information.<br /><br />%3<br /><br />Driver version: %1<br />Features: %2<br /><br />Icons from <a href="https://icons8.com">icons8.com</a>
+
+
+
+
+ Show/Hide
+
+
+
+
+ Dismiss Update Notification
+
+
+
+
+ - Driver/Service NOT Running!
+
+
+
+
+ - Deleting Sandbox Content
+
+
+
+
+
+ Checking file %1
+
+
+
+
+ The file %1 failed a security check!
+
+%2
+
+
+
+
+ All files passed the checks
+
+
+
+
+ The file %1 failed a security check, do you want to recover it anyway?
+
+%2
+
+
+
+
+
+ Do this for all files!
+
+
+
+
+ Recovering file %1 to %2
+ ファイル %1 を %2 にリカバリ
+
+
+
+ The file %1 already exists, do you want to overwrite it?
+
+
+
+
+ Failed to recover some files:
+
+
+
+
+
+ The selected window is running as part of program %1 in sandbox %2
+
+
+
+
+ The selected window is not running as part of any sandboxed program.
+
+
+
+
+ Drag the Finder Tool over a window to select it, then release the mouse to check if the window is sandboxed.
+
+
+
+
+ Sandboxie-Plus - Window Finder
+
+
+
+
+ Sandboxie Manager can not be run sandboxed!
+
+
+
+
+ CSbieModel
+
+
+ Box Group
+ ボックスグループ
+
+
+
+ Empty
+ 空
+
+
+
+ Name
+ 名前
+
+
+
+ Process ID
+ プロセス ID
+
+
+
+ Status
+ 状態
+
+
+
+ Title
+ タイトル
+
+
+
+ Info
+ 情報
+
+
+
+ Path / Command Line
+ パス / コマンドライン
+
+
+
+ CSbieObject
+
+
+ Run &Un-Sandboxed
+
+
+
+
+ CSbieProcess
+
+
+ Sbie RpcSs
+
+
+
+
+ Sbie DcomLaunch
+
+
+
+
+ Sbie Crypto
+
+
+
+
+ Sbie WuauServ
+
+
+
+
+ Sbie BITS
+
+
+
+
+ Sbie Svc
+
+
+
+
+ MSI Installer
+
+
+
+
+ Trusted Installer
+
+
+
+
+ Windows Update
+
+
+
+
+ Windows Explorer
+
+
+
+
+ Internet Explorer
+
+
+
+
+ Firefox
+
+
+
+
+ Windows Media Player
+
+
+
+
+ Winamp
+
+
+
+
+ KMPlayer
+
+
+
+
+ Windows Live Mail
+
+
+
+
+ Service Model Reg
+
+
+
+
+ RunDll32
+
+
+
+
+
+ DllHost
+
+
+
+
+ Windows Ink Services
+
+
+
+
+ Chromium Based
+
+
+
+
+ Google Updater
+
+
+
+
+ Acrobat Reader
+
+
+
+
+ MS Outlook
+
+
+
+
+ MS Excel
+
+
+
+
+ Flash Player
+
+
+
+
+ Firefox Plugin Container
+
+
+
+
+ Generic Web Browser
+
+
+
+
+ Generic Mail Client
+
+
+
+
+ Thunderbird
+
+
+
+
+ Terminated
+
+
+
+
+ Suspended
+
+
+
+
+ Running
+
+
+
+
+ Forced
+
+
+
+
+ Elevated
+
+
+
+
+ as System
+
+
+
+
+ in session %1
+
+
+
+
+ (%1)
+
+
+
+
+ CSbieTemplatesEx
+
+
+ Failed to initialize COM
+
+
+
+
+ Failed to create update session
+
+
+
+
+ Failed to create update searcher
+
+
+
+
+ Failed to set search options
+
+
+
+
+ Failed to enumerate installed Windows updates
+
+
+
+
+ Failed to retrieve update list from search result
+
+
+
+
+ Failed to get update count
+
+
+
+
+ CSbieView
+
+
+
+ Pin to Run Menu
+
+
+
+
+
+
+
+
+ Create Shortcut
+
+
+
+
+
+ Create New Box
+
+
+
+
+
+ Create Box Group
+
+
+
+
+
+ Import Box
+
+
+
+
+
+ Stop Operations
+
+
+
+
+
+ Run
+ 実行
+
+
+
+ Run Program
+ その他のプログラムを実行
+
+
+
+ Run from Start Menu
+ [スタート] メニューから実行
+
+
+
+
+ (Host) Start Menu
+
+
+
+
+ Execute Autorun Entries
+ Autorun (自動実行) エントリ
+
+
+
+ Standard Applications
+ 標準的なアプリケーション
+
+
+
+ Default Web Browser
+
+
+
+
+ Default eMail Client
+
+
+
+
+ Windows Explorer
+ Windows エクスプローラ
+
+
+
+ Registry Editor
+ レジストリエディタ
+
+
+
+ Programs and Features
+
+
+
+
+ Command Prompt
+ コマンドプロンプト
+
+
+
+ Command Prompt (as Admin)
+ コマンドプロンプト (管理者)
+
+
+
+ Command Prompt (32-bit)
+ コマンドプロンプト (32-bit)
+
+
+
+ Terminate All Programs
+ すべてのプログラムを強制終了する
+
+
+
+ Box Content
+ ボックスの内容
+
+
+
+ Browse Files
+ ファイルをブラウズ
+
+
+
+
+ Refresh Info
+
+
+
+
+
+ Explore Content
+
+
+
+
+ Open Registry
+
+
+
+
+
+ Snapshots Manager
+
+
+
+
+
+ Mount Box Image
+
+
+
+
+
+ Unmount Box Image
+
+
+
+
+ Recover Files
+ ファイルをリカバリ
+
+
+
+
+ Delete Content
+ 内容を削除
+
+
+
+ Sandbox Options
+ サンドボックスオプション
+
+
+
+ Sandbox Presets
+ サンドボックスプリセット
+
+
+
+ Ask for UAC Elevation
+ UAC 昇格を尋ねる
+
+
+
+ Drop Admin Rights
+
+
+
+
+ Emulate Admin Rights
+
+
+
+
+ Block Internet Access
+
+
+
+
+ Allow Network Shares
+
+
+
+
+ Immediate Recovery
+ 直接リカバリ
+
+
+
+ Disable Force Rules
+
+
+
+
+
+ Sandbox Tools
+ サンドボックスツール
+
+
+
+ Duplicate Box Config
+ ボックス構成を複製
+
+
+
+ Export Box
+
+
+
+
+
+ Rename Sandbox
+ サンドボックスの名前を変更
+
+
+
+
+ Move Sandbox
+ サンドボックスを移動
+
+
+
+
+ Move Up
+ 上に移動
+
+
+
+
+ Move Down
+ 下に移動
+
+
+
+
+ Remove Sandbox
+ サンドボックスを削除
+
+
+
+
+ Terminate
+
+
+
+
+ Preset
+
+
+
+
+ Block and Terminate
+
+
+
+
+ Allow internet access
+
+
+
+
+ Force into this sandbox
+
+
+
+
+ Set Linger Process
+
+
+
+
+ Set Leader Process
+
+
+
+
+ Suspend
+
+
+
+
+ Resume
+
+
+
+
+ Run Web Browser
+ Web ブラウザを実行
+
+
+
+ Run eMail Reader
+ 電子メール プログラムを実行
+
+
+
+ Run Any Program
+ その他のプログラムを実行
+
+
+
+ Run From Start Menu
+ [スタート] メニューから実行
+
+
+
+ Run Windows Explorer
+
+
+
+
+ Terminate Programs
+
+
+
+
+ Quick Recover
+
+
+
+
+ Sandbox Settings
+
+
+
+
+ Browse Content
+
+
+
+
+ Duplicate Sandbox Config
+
+
+
+
+ Export Sandbox
+
+
+
+
+ Rename Group
+ グループの名前を変更
+
+
+
+ Move Group
+ グループを移動
+
+
+
+ Remove Group
+ グループを削除
+
+
+
+ File root: %1
+
+
+
+
+
+ Registry root: %1
+
+
+
+
+
+ IPC root: %1
+
+
+
+
+
+ Disk root: %1
+
+
+
+
+
+ Options:
+
+
+
+
+
+ [None]
+
+
+
+
+ Please enter a new name for the Group.
+
+
+
+
+ Do you really want to remove the selected group(s)?
+ 選択したグループを削除します。本当によろしいですか?
+
+
+
+ Move entries by (negative values move up, positive values move down):
+
+
+
+
+ A group can not be its own parent.
+
+
+
+
+
+ Select file name
+
+
+
+
+
+ 7-zip Archive (*.7z)
+
+
+
+
+ Failed to open archive, wrong password?
+
+
+
+
+ Failed to open archive (%1)!
+
+
+
+
+ This name is already in use, please select an alternative box name
+
+
+
+
+ Importing: %1
+
+
+
+
+ Please enter a new group name
+
+
+
+
+ The Sandbox name and Box Group name cannot use the ',()' symbol.
+
+
+
+
+ This name is already used for a Box Group.
+
+
+
+
+ This name is already used for a Sandbox.
+
+
+
+
+
+
+ Don't show this message again.
+
+
+
+
+
+
+ This Sandbox is empty.
+
+
+
+
+ WARNING: The opened registry editor is not sandboxed, please be careful and only do changes to the pre-selected sandbox locations.
+
+
+
+
+ Don't show this warning in future
+
+
+
+
+ Please enter a new name for the duplicated Sandbox.
+
+
+
+
+ %1 Copy
+
+
+
+
+ Exporting: %1
+
+
+
+
+ Please enter a new name for the Sandbox.
+
+
+
+
+ Do you really want to remove the selected sandbox(es)?<br /><br />Warning: The box content will also be deleted!
+ 選択したサンドボックスを削除します。本当によろしいですか?<br /><br />警告:ボックスの内容物も一緒に削除されます!
+
+
+
+ This Sandbox is already empty.
+
+
+
+
+
+ Do you want to delete the content of the selected sandbox?
+ 選択したサンドボックスの全ての内容を削除してもよろしいですか?
+
+
+
+
+ Also delete all Snapshots
+
+
+
+
+ Do you really want to delete the content of all selected sandboxes?
+ 選択したサンドボックスの全ての内容を削除します。本当によろしいですか?
+
+
+
+ Do you want to terminate all processes in the selected sandbox(es)?
+ 選択したサンドボックス内の全てのプロセスを強制終了します。よろしいですか?
+
+
+
+
+ Terminate without asking
+ 確認なしで強制終了する
+
+
+
+ The Sandboxie Start Menu will now be displayed. Select an application from the menu, and Sandboxie will create a new shortcut icon on your real desktop, which you can use to invoke the selected application under the supervision of Sandboxie.
+
+
+
+
+
+ Create Shortcut to sandbox %1
+
+
+
+
+ Do you want to terminate %1?
+
+
+
+
+ the selected processes
+
+
+
+
+ This box does not have Internet restrictions in place, do you want to enable them?
+
+
+
+
+ This sandbox is disabled, do you want to enable it?
+
+
+
+
+ CScriptManager
+
+
+ Fatal error, failed to load troubleshooting instructions!
+
+
+
+
+ Error, troubleshooting instructions duplicated %1 (%2 <-> %3)!
+
+
+
+
+ Downloaded troubleshooting instructions are corrupted!
+
+
+
+
+ CSelectBoxWindow
+
+
+ Sandboxie-Plus - Run Sandboxed
+
+
+
+
+ Are you sure you want to run the program outside the sandbox?
+
+
+
+
+ Please select a sandbox.
+
+
+
+
+ CSettingsWindow
+
+
+
+ Sandboxed Web Browser
+
+
+
+
+ Sandboxie Plus - Global Settings
+
+
+
+
+ Auto Detection
+
+
+
+
+ No Translation
+
+
+
+
+
+ Don't integrate links
+
+
+
+
+
+ As sub group
+
+
+
+
+
+ Fully integrate
+
+
+
+
+ Don't show any icon
+
+
+
+
+ Show Plus icon
+
+
+
+
+ Show Classic icon
+
+
+
+
+ All Boxes
+
+
+
+
+ Active + Pinned
+
+
+
+
+ Pinned Only
+
+
+
+
+ Close to Tray
+
+
+
+
+ Prompt before Close
+
+
+
+
+ Close
+
+
+
+
+ None
+
+
+
+
+ Native
+
+
+
+
+ Qt
+
+
+
+
+ Every Day
+
+
+
+
+ Every Week
+
+
+
+
+ Every 2 Weeks
+
+
+
+
+ Every 30 days
+
+
+
+
+ Ignore
+
+
+
+
+
+ Notify
+
+
+
+
+
+ Download & Notify
+
+
+
+
+
+ Download & Install
+
+
+
+
+ %1
+
+
+
+
+ Browse for Program
+
+
+
+
+ Add %1 Template
+
+
+
+
+ Select font
+
+
+
+
+ Reset font
+
+
+
+
+ Search for settings
+
+
+
+
+ %0, %1 pt
+
+
+
+
+ Please enter message
+
+
+
+
+ Select Program
+
+
+
+
+ Executables (*.exe *.cmd)
+
+
+
+
+
+ Please enter a menu title
+
+
+
+
+ Please enter a command
+
+
+
+
+
+
+ Run &Sandboxed
+
+
+
+
+ kilobytes (%1)
+
+
+
+
+ Volume not attached
+
+
+
+
+ This supporter certificate has expired, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.
+
+
+
+
+ <br /><font color='red'>Plus features will be disabled in %1 days.</font>
+
+
+
+
+ <br /><font color='red'>For the current build Plus features remain enabled</font>, but you no longer have access to Sandboxie-Live services, including compatibility updates and the troubleshooting database.
+
+
+
+
+ <br />Plus features are no longer enabled.
+
+
+
+
+ This supporter certificate will <font color='red'>expire in %1 days</font>, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.
+
+
+
+
+ Retrieving certificate...
+
+
+
+
+ Contributor
+
+
+
+
+ Eternal
+
+
+
+
+ Business
+
+
+
+
+ Personal
+
+
+
+
+ Great Patreon
+
+
+
+
+ Patreon
+
+
+
+
+ Family
+
+
+
+
+ Home
+
+
+
+
+ Evaluation
+
+
+
+
+ Type %1
+
+
+
+
+ Advanced
+
+
+
+
+ Max Level
+
+
+
+
+ Level %1
+
+
+
+
+ Supporter certificate required for access
+
+
+
+
+ Supporter certificate required for automation
+
+
+
+
+ Run &Un-Sandboxed
+
+
+
+
+ This does not look like a certificate. Please enter the entire certificate, not just a portion of it.
+
+
+
+
+ This certificate is unfortunately not valid for the current build, you need to get a new certificate or downgrade to an earlier build.
+
+
+
+
+ Although this certificate has expired, for the currently installed version plus features remain enabled. However, you will no longer have access to Sandboxie-Live services, including compatibility updates and the online troubleshooting database.
+
+
+
+
+ This certificate has unfortunately expired, you need to get a new certificate.
+
+
+
+
+ Thank you for supporting the development of Sandboxie-Plus.
+
+
+
+
+ Update Available
+
+
+
+
+ Installed
+
+
+
+
+ by %1
+
+
+
+
+ (info website)
+
+
+
+
+ This Add-on is mandatory and can not be removed.
+
+
+
+
+
+ Select Directory
+
+
+
+
+ <a href="check">Check Now</a>
+
+
+
+
+ Please enter the new configuration password.
+
+
+
+
+ Please re-enter the new configuration password.
+
+
+
+
+ Passwords did not match, please retry.
+
+
+
+
+ Process
+
+
+
+
+ Folder
+
+
+
+
+ Please enter a program file name
+
+
+
+
+ Please enter the template identifier
+
+
+
+
+ Error: %1
+
+
+
+
+ Do you really want to delete the selected local template(s)?
+
+
+
+
+ %1 (Current)
+
+
+
+
+ CSetupWizard
+
+
+ Setup Wizard
+
+
+
+
+ The decision you make here will affect which page you get to see next.
+
+
+
+
+ This help is likely not to be of any help.
+
+
+
+
+ Sorry, I already gave all the help I could.
+
+
+
+
+ Setup Wizard Help
+
+
+
+
+ CShellPage
+
+
+ Configure <b>Sandboxie-Plus</b> shell integration
+
+
+
+
+ Configure how Sandboxie-Plus should integrate with your system.
+
+
+
+
+ Start UI with Windows
+
+
+
+
+ Add 'Run Sandboxed' to the explorer context menu
+
+
+
+
+ Add desktop shortcut for starting Web browser under Sandboxie
+
+
+
+
+ CSnapshotsWindow
+
+
+ %1 - Snapshots
+
+
+
+
+ Snapshot
+
+
+
+
+ Revert to empty box
+
+
+
+
+ (default)
+
+
+
+
+ Please enter a name for the new Snapshot.
+
+
+
+
+ New Snapshot
+
+
+
+
+ Do you really want to switch the active snapshot? Doing so will delete the current state!
+
+
+
+
+ Do you really want to delete the selected snapshot?
+
+
+
+
+ Performing Snapshot operation...
+
+
+
+
+ CStackView
+
+
+ #|Symbol
+
+
+
+
+ CSubmitPage
+
+
+ Submit Issue Report
+
+
+
+
+ Detailed issue description
+
+
+
+
+ Attach Sandboxie.ini
+
+
+
+
+ Sandboxing compatibility is reliant on the configuration, hence attaching the Sandboxie.ini file helps a lot with finding the issue.
+
+
+
+
+ Attach Logs
+
+
+
+
+ Selecting partially checked state sends only the message log, but not the trace log.
+Before sending, you can review the logs in the main window.
+
+
+
+
+ Attach Crash Dumps
+
+
+
+
+ An application crashed during the troubleshooting procedure, attaching a crash dump can help with the debugging.
+
+
+
+
+ Email address
+
+
+
+
+ You have the option to provide an email address to receive a notification once a solution for your issue has been identified.
+
+
+
+
+ We apologize for the inconvenience you are currently facing with Sandboxie-Plus.
+
+
+
+
+ Unfortunately, the automated troubleshooting procedure failed.
+
+
+
+
+ Regrettably, there is no automated troubleshooting procedure available for the specific issue you have described.
+
+
+
+
+ If you wish to submit an issue report, please review the report below and click 'Finish'.
+
+
+
+
+ Compressing Logs
+
+
+
+
+ Compressing Dumps
+
+
+
+
+ Submitting issue report...
+
+
+
+
+ Failed to submit issue report, error %1
+Try submitting without the log attached.
+
+
+
+
+ Your issue report has been successfully submitted, thank you.
+
+
+
+
+ CSummaryPage
+
+
+ Create the new Sandbox
+
+
+
+
+ Almost complete, click Finish to create a new sandbox and conclude the wizard.
+
+
+
+
+ Save options as new defaults
+
+
+
+
+ Skip this summary page when advanced options are not set
+
+
+
+
+
+This Sandbox will be saved to: %1
+
+
+
+
+
+This box's content will be DISCARDED when it's closed, and the box will be removed.
+
+
+
+
+
+This box will DISCARD its content when its closed, its suitable only for temporary data.
+
+
+
+
+
+Processes in this box will not be able to access the internet or the local network, this ensures all accessed data to stay confidential.
+
+
+
+
+
+This box will run the MSIServer (*.msi installer service) with a system token, this improves the compatibility but reduces the security isolation.
+
+
+
+
+
+Processes in this box will think they are run with administrative privileges, without actually having them, hence installers can be used even in a security hardened box.
+
+
+
+
+
+Processes in this box will be running with a custom process token indicating the sandbox they belong to.
+
+
+
+
+ Failed to create new box: %1
+
+
+
+
+ CSupportDialog
+
+
+ This Insider build requires a special certificate of type GREAT_PATREON, PERSONAL-HUGE, or CONTRIBUTOR.
+If you are a Great Supporter on Patreon already, Sandboxie can check online for an update of your certificate.
+
+
+
+
+
+ This Insider build requires a special certificate of type GREAT_PATREON, PERSONAL-HUGE, or CONTRIBUTOR.
+
+
+
+
+ An attempt was made to use a blocked certificate on this system. This action violates the terms of use for the support certificate. You must now purchase a valid certificate, as the usage of the free version has been restricted.
+
+
+
+
+ This is a <a href="https://sandboxie-plus.com/go.php?to=sbie-insider">exclusive Insider build</a> of Sandboxie-Plus it is only available to <a href="https://sandboxie-plus.com/go.php?to=patreon">Patreon Supporters</a> on higher tiers as well as to project contributors and owners of a HUGE supporter certificate.
+
+
+
+
+ The installed supporter certificate allows for <b>%1 seats</b> to be active.<br /><br />
+
+
+
+
+ <b>There seems to be however %1 Sandboxie-Plus instances on your network, <font color='red'>you need to obtain additional <a href="https://sandboxie-plus.com/go.php?to=sbie-obtain-cert&tip=more">support certificates</a></font>.</b><br /><br />
+
+
+
+
+ The installed supporter certificate <b>has expired %1 days ago</b> and <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">must be renewed</a>.<br /><br />
+
+
+
+
+ <b>You have installed Sandboxie-Plus more than %1 days ago.</b><br /><br />
+
+
+
+
+ <u>Commercial use of Sandboxie past the evaluation period</u>, requires a valid <a href="https://sandboxie-plus.com/go.php?to=sbie-obtain-cert">support certificate</a>.
+
+
+
+
+ The installed supporter certificate is <b>outdated</b> and it is <u>not valid for<b> this version</b></u> of Sandboxie-Plus.<br /><br />
+
+
+
+
+ The installed supporter certificate is <b>expired</b> and <u>should be renewed</u>.<br /><br />
+
+
+
+
+ <b>You have been using Sandboxie-Plus for more than %1 days now.</b><br /><br />
+
+
+
+
+ Sandboxie on ARM64 requires a valid supporter certificate for continued use.<br /><br />
+
+
+
+
+ Personal use of Sandboxie is free of charge on x86/x64, although some functionality is only available to project supporters.<br /><br />
+
+
+
+
+ Please continue <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">supporting the project</a> by renewing your <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a> and continue using the <b>enhanced functionality</b> in new builds.
+
+
+
+
+ Sandboxie <u>without</u> a valid supporter certificate will sometimes <b><font color='red'>pause for a few seconds</font></b>. This pause allows you to consider <a href="https://sandboxie-plus.com/go.php?to=sbie-obtain-cert">purchasing a supporter certificate</a> or <a href="https://sandboxie-plus.com/go.php?to=sbie-contribute">earning one by contributing</a> to the project. <br /><br />A <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a> not just removes this reminder, but also enables <b>exclusive enhanced functionality</b> providing better security and compatibility.
+
+
+
+
+ Sandboxie-Plus - Support Reminder
+
+
+
+
+ %1
+
+
+
+
+ Quit
+
+
+
+
+ Continue
+
+
+
+
+ Get Certificate
+
+
+
+
+ Enter Certificate
+
+
+
+
+ CTemplateTypePage
+
+
+ Create new Template
+
+
+
+
+ Select template type:
+
+
+
+
+ %1 template
+
+
+
+
+ CTemplateWizard
+
+
+ Compatibility Template Wizard
+
+
+
+
+ Custom
+
+
+
+
+ Web Browser
+
+
+
+
+ Force %1 to run in this sandbox
+
+
+
+
+ Allow direct access to the entire %1 profile folder
+
+
+
+
+
+ Allow direct access to %1 phishing database
+
+
+
+
+ Allow direct access to %1 session management
+
+
+
+
+
+ Allow direct access to %1 passwords
+
+
+
+
+
+ Allow direct access to %1 cookies
+
+
+
+
+
+ Allow direct access to %1 bookmark and history database
+
+
+
+
+ Allow direct access to %1 sync data
+
+
+
+
+ Allow direct access to %1 preferences
+
+
+
+
+ Allow direct access to %1 bookmarks
+
+
+
+
+ CTraceModel
+
+
+ %1 (%2)
+
+
+
+
+ Process %1
+
+
+
+
+ Thread %1
+
+
+
+
+ Unknown
+
+
+
+
+ Process
+
+
+
+
+ Type
+
+
+
+
+ Status
+
+
+
+
+ Value
+
+
+
+
+ CTraceView
+
+
+ Monitor mode
+
+
+
+
+ Show as task tree
+
+
+
+
+ Show NT Object Tree
+
+
+
+
+ PID:
+
+
+
+
+
+
+
+
+
+
+
+ [All]
+
+
+
+
+ TID:
+
+
+
+
+ Type:
+
+
+
+
+ Status:
+
+
+
+
+ Open
+
+
+
+
+ Closed
+
+
+
+
+ Trace
+
+
+
+
+ Other
+
+
+
+
+ Show All Boxes
+
+
+
+
+ Show Stack Trace
+
+
+
+
+ Save to file
+
+
+
+
+ Auto Scroll
+
+
+
+
+ Cleanup Trace Log
+
+
+
+
+ To use the stack traces feature the DbgHelp.dll and SymSrv.dll are required, do you want to download and install them?
+
+
+
+
+ %1 (%2)
+
+
+
+
+ %1
+
+
+
+
+ Save trace log to file
+
+
+
+
+ Failed to open log file for writing
+
+
+
+
+ Saving TraceLog...
+
+
+
+
+ CTraceWindow
+
+
+ Sandboxie-Plus - Trace Monitor
+
+
+
+
+ CUIPage
+
+
+ Configure <b>Sandboxie-Plus</b> UI
+
+
+
+
+ Select the user interface style you prefer.
+
+
+
+
+ &Advanced UI for experts
+
+
+
+
+ &Simple UI for beginners
+
+
+
+
+ &Vintage SbieCtrl.exe UI
+
+
+
+
+ Use Bright Mode
+
+
+
+
+ Use Dark Mode
+
+
+
+
+ CompressDialog
+
+
+ Compress Files
+
+
+
+
+ Compression
+
+
+
+
+ When selected you will be prompted for a password after clicking OK
+
+
+
+
+ Encrypt archive content
+
+
+
+
+ Solid archiving improves compression ratios by treating multiple files as a single continuous data block. Ideal for a large number of small files, it makes the archive more compact but may increase the time required for extracting individual files.
+
+
+
+
+ Create Solide Archive
+
+
+
+
+ Export Sandbox to a 7z archive, Choose Your Compression Rate and Customize Additional Compression Settings.
+
+
+
+
+ OptionsWindow
+
+
+ SandboxiePlus Options
+
+
+
+
+ General Options
+
+
+
+
+ Box Options
+
+
+
+
+ Always show this sandbox in the systray list (Pinned)
+
+
+
+
+ Sandbox Indicator in title:
+
+
+
+
+ Sandboxed window border:
+
+
+
+
+ <b>More Box Types</b> are exclusively available to <u>project supporters</u>, the Privacy Enhanced boxes <b><font color='red'>protect user data from illicit access</font></b> by the sandboxed programs.<br />If you are not yet a supporter, then please consider <a href="https://sandboxie-plus.com/go.php?to=sbie-get-cert">supporting the project</a>, to receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>.<br />You can test the other box types by creating new sandboxes of those types, however processes in these will be auto terminated after 5 minutes.
+
+
+
+
+ Show this box in the 'run in box' selection prompt
+
+
+
+
+ Box info
+
+
+
+
+ Box Type Preset:
+
+
+
+
+ px Width
+
+
+
+
+ General Configuration
+
+
+
+
+ Appearance
+
+
+
+
+ Double click action:
+
+
+
+
+ File Options
+
+
+
+
+ Disk/File access
+
+
+
+
+ Use volume serial numbers for drives, like: \drive\C~1234-ABCD
+
+
+
+
+ Encrypt sandbox content
+
+
+
+
+ Auto delete content when last sandboxed process terminates
+
+
+
+
+ When <a href="sbie://docs/boxencryption">Box Encryption</a> is enabled the box’s root folder, including its registry hive, is stored in an encrypted disk image, using <a href="https://diskcryptor.org">Disk Cryptor's</a> AES-XTS implementation.
+
+
+
+
+ Box Delete options
+
+
+
+
+ Allow elevated sandboxed applications to read the harddrive
+
+
+
+
+ Partially checked means prevent box removal but not content deletion.
+
+
+
+
+ Protect this sandbox from deletion or emptying
+
+
+
+
+ <a href="addon://ImDisk">Install ImDisk</a> driver to enable Ram Disk and Disk Image support.
+
+
+
+
+ Separate user folders
+
+
+
+
+ Box Structure
+
+
+
+
+ Store the sandbox content in a Ram Disk
+
+
+
+
+ Warn when an application opens a harddrive handle
+
+
+
+
+ Set Password
+
+
+
+
+ Virtualization scheme
+
+
+
+
+ The box structure can only be changed when the sandbox is empty
+
+
+
+
+
+ File Migration
+
+
+
+
+ Copy file size limit:
+
+
+
+
+ Prompt user for large file migration
+
+
+
+
+ 2113: Content of migrated file was discarded
+2114: File was not migrated, write access to file was denied
+2115: File was not migrated, file will be opened read only
+
+
+
+
+ Issue message 2113/2114/2115 when a file is not fully migrated
+
+
+
+
+ kilobytes
+
+
+
+
+ Add Pattern
+
+
+
+
+ Remove Pattern
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Show Templates
+
+
+
+
+
+
+
+ Action
+
+
+
+
+
+
+
+
+
+
+
+ Program
+
+
+
+
+ Pattern
+
+
+
+
+ Sandboxie does not allow writing to host files, unless permitted by the user. When a sandboxed application attempts to modify a file, the entire file must be copied into the sandbox, for large files this can take a significate amount of time. Sandboxie offers options for handling these cases, which can be configured on this page.
+
+
+
+
+ Using wildcard patterns file specific behavior can be configured in the list below:
+
+
+
+
+ Issue message 2102 when a file is too large
+
+
+
+
+ When a file cannot be migrated, open it in read-only mode instead
+
+
+
+
+ Restrictions
+
+
+
+
+ Open Windows Credentials Store (user mode)
+
+
+
+
+ Block read access to the clipboard
+
+
+
+
+ Prevent change to network and firewall parameters (user mode)
+
+
+
+
+ Allow to read memory of unsandboxed processes (not recommended)
+
+
+
+
+ Block access to the printer spooler
+
+
+
+
+ Allow the print spooler to print to files outside the sandbox
+
+
+
+
+ Block network files and folders, unless specifically opened.
+
+
+
+
+ Remove spooler restriction, printers can be installed outside the sandbox
+
+
+
+
+ Open System Protected Storage
+
+
+
+
+ Issue message 2111 when a process access is denied
+
+
+
+
+
+
+
+
+ Protect the system from sandboxed processes
+
+
+
+
+ Other restrictions
+
+
+
+
+ Printing restrictions
+
+
+
+
+ Network restrictions
+
+
+
+
+ Run Menu
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Remove
+
+
+
+
+ Add program
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Name
+
+
+
+
+ Command Line
+
+
+
+
+ Move Up
+
+
+
+
+ Move Down
+
+
+
+
+ You can configure custom entries for the sandbox run menu.
+
+
+
+
+ Security Options
+
+
+
+
+ Security Hardening
+
+
+
+
+ Use the original token only for approved NT system calls
+
+
+
+
+ Enable all security enhancements (make security hardened box)
+
+
+
+
+ Elevation restrictions
+
+
+
+
+ Make applications think they are running elevated (allows to run installers safely)
+
+
+
+
+ (Recommended)
+
+
+
+
+ Restrict driver/device access to only approved ones
+
+
+
+
+ Security enhancements
+
+
+
+
+ Allow MSIServer to run with a sandboxed system token and apply other exceptions if required
+
+
+
+
+ Drop rights from Administrators and Power Users groups
+
+
+
+
+ CAUTION: When running under the built in administrator, processes can not drop administrative privileges.
+
+
+
+
+ Note: Msi Installer Exemptions should not be required, but if you encounter issues installing a msi package which you trust, this option may help the installation complete successfully. You can also try disabling drop admin rights.
+
+
+
+
+ Security note: Elevated applications running under the supervision of Sandboxie, with an admin or system token, have more opportunities to bypass isolation and modify the system outside the sandbox.
+
+
+
+
+ Security Isolation
+
+
+
+
+ Various isolation features can break compatibility with some applications. If you are using this sandbox <b>NOT for Security</b> but for application portability, by changing these options you can restore compatibility by sacrificing some security.
+
+
+
+
+ Disable Security Isolation
+
+
+
+
+ Open access to Windows Security Account Manager
+
+
+
+
+ Disable Security Filtering (not recommended)
+
+
+
+
+ Security Filtering used by Sandboxie to enforce filesystem and registry access restrictions, as well as to restrict process access.
+
+
+
+
+ Security Isolation through the usage of a heavily restricted process token is Sandboxie's primary means of enforcing sandbox restrictions, when this is disabled the box is operated in the application compartment mode, i.e. it’s no longer providing reliable security, just simple application compartmentalization.
+
+
+
+
+ Open access to Windows Local Security Authority
+
+
+
+
+
+
+
+
+
+
+ Protect the sandbox integrity itself
+
+
+
+
+ Security Isolation & Filtering
+
+
+
+
+ Access Isolation
+
+
+
+
+ Allow sandboxed programs to manage Hardware/Devices
+
+
+
+
+ The below options can be used safely when you don't grant admin rights.
+
+
+
+
+
+ Box Protection
+
+
+
+
+ Deny Process
+
+
+
+
+ Issue message 1318/1317 when a host process tries to access a sandboxed process/the box root
+
+
+
+
+
+ Process
+
+
+
+
+ Sandboxie-Plus is able to create confidential sandboxes that provide robust protection against unauthorized surveillance or tampering by host processes. By utilizing an encrypted sandbox image, this feature delivers the highest level of operational confidentiality, ensuring the safety and integrity of sandboxed processes.
+
+
+
+
+ Allow Process
+
+
+
+
+ Protect processes in this box from being accessed by specified unsandboxed host processes.
+
+
+
+
+ Allow useful Windows processes access to protected processes
+
+
+
+
+ Protect processes within this box from host processes
+
+
+
+
+ Advanced Security
+
+
+
+
+ Use a Sandboxie login instead of an anonymous token
+
+
+
+
+ Other isolation
+
+
+
+
+ Start the sandboxed RpcSs as a SYSTEM process (not recommended)
+
+
+
+
+ Privilege isolation
+
+
+
+
+ Protect sandboxed SYSTEM processes from unprivileged processes
+
+
+
+
+ Sandboxie token
+
+
+
+
+
+ (Security Critical)
+
+
+
+
+ Drop critical privileges from processes running with a SYSTEM token
+
+
+
+
+ Do not start sandboxed services using a system token (recommended)
+
+
+
+
+ Allow only privileged processes to access the Service Control Manager
+
+
+
+
+ Add sandboxed processes to job objects (recommended)
+
+
+
+
+ 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.
+
+
+
+
+ Program Groups
+
+
+
+
+ Add Group
+
+
+
+
+
+
+
+
+ Add Program
+
+
+
+
+ You can group programs together and give them a group name. Program groups can be used with some of the settings instead of program names. Groups defined for the box overwrite groups defined in templates.
+
+
+
+
+ Program Control
+
+
+
+
+ Force Programs
+
+
+
+
+ Programs entered here, or programs started from entered locations, will be put in this sandbox automatically, unless they are explicitly started in another sandbox.
+
+
+
+
+ Force Folder
+
+
+
+
+
+
+
+
+
+
+ Type
+
+
+
+
+ Force Program
+
+
+
+
+ Disable forced Process and Folder for this sandbox
+
+
+
+
+ Breakout Programs
+
+
+
+
+ Programs entered here will be allowed to break out of this sandbox when they start. It is also possible to capture them into another sandbox, for example to have your web browser always open in a dedicated box.
+
+
+
+
+ <b><font color='red'>SECURITY ADVISORY</font>:</b> Using <a href="sbie://docs/breakoutfolder">BreakoutFolder</a> and/or <a href="sbie://docs/breakoutprocess">BreakoutProcess</a> in combination with Open[File/Pipe]Path directives can compromise security, as can the use of <a href="sbie://docs/breakoutdocument">BreakoutDocument</a> allowing any * or insecure (*.exe;*.dll;*.ocx;*.cmd;*.bat;*.lnk;*.pif;*.url;*.ps1;etc…) extensions. Please review the security section for each option in the documentation before use.
+
+
+
+
+ Breakout Folder
+
+
+
+
+ Breakout Program
+
+
+
+
+ Stop Behaviour
+
+
+
+
+ Lingering Programs
+
+
+
+
+ Lingering programs will be automatically terminated if they are still running after all other processes have been terminated.
+
+
+
+
+ Leader Programs
+
+
+
+
+ If leader processes are defined, all others are treated as lingering processes.
+
+
+
+
+ Start Restrictions
+
+
+
+
+ Issue message 1308 when a program fails to start
+
+
+
+
+ Allow only selected programs to start in this sandbox. *
+
+
+
+
+ Prevent selected programs from starting in this sandbox.
+
+
+
+
+ Allow all programs to start in this sandbox.
+
+
+
+
+ * Note: Programs installed to this sandbox won't be able to start at all.
+
+
+
+
+ Resource Access
+
+
+
+
+ Files
+
+
+
+
+
+
+
+
+
+ Access
+
+
+
+
+
+
+ Path
+
+
+
+
+ Add File/Folder
+
+
+
+
+ Configure which processes can access Files, Folders and Pipes.
+'Open' access only applies to program binaries located outside the sandbox, you can use 'Open for All' instead to make it apply to all programs, or change this behavior in the Policies tab.
+
+
+
+
+ Registry
+
+
+
+
+ Add Reg Key
+
+
+
+
+ Configure which processes can access the Registry.
+'Open' access only applies to program binaries located outside the sandbox, you can use 'Open for All' instead to make it apply to all programs, or change this behavior in the Policies tab.
+
+
+
+
+ IPC
+
+
+
+
+ Add IPC Path
+
+
+
+
+ Configure which processes can access NT IPC objects like ALPC ports and other processes memory and context.
+To specify a process use '$:program.exe' as path.
+
+
+
+
+ Wnd
+
+
+
+
+ Add Wnd Class
+
+
+
+
+ Wnd Class
+
+
+
+
+ Don't alter window class names created by sandboxed programs
+
+
+
+
+ Configure which processes can access Desktop objects like Windows and alike.
+
+
+
+
+ COM
+
+
+
+
+ Class Id
+
+
+
+
+ Add COM Object
+
+
+
+
+ Configure which processes can access COM objects.
+
+
+
+
+ Don't use virtualized COM, Open access to hosts COM infrastructure (not recommended)
+
+
+
+
+ Access Policies
+
+
+
+
+ Rule Policies
+
+
+
+
+ Apply Close...=!<program>,... rules also to all binaries located in the sandbox.
+
+
+
+
+ Prioritize rules based on their Specificity and Process Match Level
+
+
+
+
+ Apply File and Key Open directives only to binaries located outside the sandbox.
+
+
+
+
+ Access Mode
+
+
+
+
+ The rule specificity is a measure to how well a given rule matches a particular path, simply put the specificity is the length of characters from the begin of the path up to and including the last matching non-wildcard substring. A rule which matches only file types like "*.tmp" would have the highest specificity as it would always match the entire file path.
+The process match level has a higher priority than the specificity and describes how a rule applies to a given process. Rules applying by process name or group have the strongest match level, followed by the match by negation (i.e. rules applying to all processes but the given one), while the lowest match levels have global matches, i.e. rules that apply to any process.
+
+
+
+
+ Privacy Mode, block file and registry access to all locations except the generic system ones
+
+
+
+
+ When the Privacy Mode is enabled, sandboxed processes will be only able to read C:\Windows\*, C:\Program Files\*, and parts of the HKLM registry, all other locations will need explicit access to be readable and/or writable. In this mode, Rule Specificity is always enabled.
+
+
+
+
+ Network Options
+
+
+
+
+ Process Restrictions
+
+
+
+
+ Issue message 1307 when a program is denied internet access
+
+
+
+
+ Prompt user whether to allow an exemption from the blockade.
+
+
+
+
+ Note: Programs installed to this sandbox won't be able to access the internet at all.
+
+
+
+
+ Set network/internet access for unlisted processes:
+
+
+
+
+
+ Network Firewall
+
+
+
+
+ Test Rules, Program:
+
+
+
+
+ Port:
+
+
+
+
+ IP:
+
+
+
+
+ Protocol:
+
+
+
+
+ X
+
+
+
+
+ Add Rule
+
+
+
+
+ Port
+
+
+
+
+ IP
+
+
+
+
+ Protocol
+
+
+
+
+ CAUTION: Windows Filtering Platform is not enabled with the driver, therefore these rules will be applied only in user mode and can not be enforced!!! This means that malicious applications may bypass them.
+
+
+
+
+ File Recovery
+
+
+
+
+ Quick Recovery
+
+
+
+
+ When the Quick Recovery function is invoked, the following folders will be checked for sandboxed content.
+
+
+
+
+ Add Folder
+
+
+
+
+ Immediate Recovery
+
+
+
+
+ You can exclude folders and file types (or file extensions) from Immediate Recovery.
+
+
+
+
+ Ignore Extension
+
+
+
+
+ Enable Immediate Recovery prompt to be able to recover files as soon as they are created.
+
+
+
+
+ Ignore Folder
+
+
+
+
+ Various Options
+
+
+
+
+
+ Compatibility
+
+
+
+
+ Apply ElevateCreateProcess Workaround (legacy behaviour)
+
+
+
+
+ Emulate sandboxed window station for all processes
+
+
+
+
+ Disable the use of RpcMgmtSetComTimeout by default (this may resolve compatibility issues)
+
+
+
+
+ Force usage of custom dummy Manifest files (legacy behaviour)
+
+
+
+
+ Use desktop object workaround for all processes
+
+
+
+
+ Allow use of nested job objects (works on Windows 8 and later)
+
+
+
+
+ When the global hotkey is pressed 3 times in short succession this exception will be ignored.
+
+
+
+
+ Exclude this sandbox from being terminated when "Terminate All Processes" is invoked.
+
+
+
+
+ Dlls && Extensions
+
+
+
+
+ Image Protection
+
+
+
+
+ Description
+
+
+
+
+ Sandboxie’s resource access rules often discriminate against program binaries located inside the sandbox. OpenFilePath and OpenKeyPath work only for application binaries located on the host natively. In order to define a rule without this restriction, OpenPipePath or OpenConfPath must be used. Likewise, all Closed(File|Key|Ipc)Path directives which are defined by negation e.g. ‘ClosedFilePath=! iexplore.exe,C:Users*’ will be always closed for binaries located inside a sandbox. Both restriction policies can be disabled on the “Access policies” page.
+This is done to prevent rogue processes inside the sandbox from creating a renamed copy of themselves and accessing protected resources. Another exploit vector is the injection of a library into an authorized process to get access to everything it is allowed to access. Using Host Image Protection, this can be prevented by blocking applications (installed on the host) running inside a sandbox from loading libraries from the sandbox itself.
+
+
+
+
+ Prevent sandboxes programs installed on host from loading dll's from the sandbox
+
+
+
+
+ Issue message 1305 when a program tries to load a sandboxed dll
+
+
+
+
+ Sandboxie'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.
+
+
+
+
+ Advanced Options
+
+
+
+
+ Miscellaneous
+
+
+
+
+ Add Option
+
+
+
+
+ Here you can configure advanced per process options to improve compatibility and/or customize sandboxing behavior.
+
+
+
+
+ Option
+
+
+
+
+
+ Value
+
+
+
+
+ Triggers
+
+
+
+
+ This command will be run before the box content will be deleted
+
+
+
+
+
+
+ Run Command
+
+
+
+
+ Event
+
+
+
+
+
+ These commands are run UNBOXED just before the box content is deleted
+
+
+
+
+ On File Recovery
+
+
+
+
+ This command will be run before a file is being recovered and the file path will be passed as the first argument. If this command returns anything other than 0, the recovery will be blocked
+
+
+
+
+ Run File Checker
+
+
+
+
+ These commands are executed only when a box is initialized. To make them run again, the box content must be deleted.
+
+
+
+
+ On Box Init
+
+
+
+
+ Here you can specify actions to be executed automatically on various box events.
+
+
+
+
+ These events are executed each time a box is started
+
+
+
+
+ On Box Start
+
+
+
+
+ Start Service
+
+
+
+
+ On Delete Content
+
+
+
+
+ Hide Processes
+
+
+
+
+ Add Process
+
+
+
+
+ Don't allow sandboxed processes to see processes running in other boxes
+
+
+
+
+ Hide host processes from processes running in the sandbox.
+
+
+
+
+ Users
+
+
+
+
+ Restrict Resource Access monitor to administrators only
+
+
+
+
+ Add User
+
+
+
+
+ Add user accounts and user groups to the list below to limit use of the sandbox to only those accounts. If the list is empty, the sandbox can be used by all user accounts.
+
+Note: Forced Programs and Force Folders settings for a sandbox do not apply to user accounts which cannot use the sandbox.
+
+
+
+
+ Tracing
+
+
+
+
+ Key Trace
+
+
+
+
+ GUI Trace
+
+
+
+
+ Log Debug Output to the Trace Log
+
+
+
+
+ Log all SetError's to Trace log (creates a lot of output)
+
+
+
+
+ DNS Request Logging
+
+
+
+
+ Access Tracing
+
+
+
+
+ Syscall Trace (creates a lot of output)
+
+
+
+
+ Log all access events as seen by the driver to the resource access log.
+
+This options set the event mask to "*" - All access events
+You can customize the logging using the ini by specifying
+"A" - Allowed accesses
+"D" - Denied accesses
+"I" - Ignore access requests
+instead of "*".
+
+
+
+
+ Resource Access Monitor
+
+
+
+
+ COM Class Trace
+
+
+
+
+ Pipe Trace
+
+
+
+
+ File Trace
+
+
+
+
+ Disable Resource Access Monitor
+
+
+
+
+ IPC Trace
+
+
+
+
+ Debug
+
+
+
+
+ WARNING, these options can disable core security guarantees and break sandbox security!!!
+
+
+
+
+ These options are intended for debugging compatibility issues, please do not use them in production use.
+
+
+
+
+ App Templates
+
+
+
+
+ Templates
+
+
+
+
+ This list contains a large amount of sandbox compatibility enhancing templates
+
+
+
+
+ Text Filter
+
+
+
+
+ Add Template
+
+
+
+
+ Filter Categories
+
+
+
+
+ Category
+
+
+
+
+ Template Folders
+
+
+
+
+ Configure the folder locations used by your other applications.
+
+Please note that this values are currently user specific and saved globally for all boxes.
+
+
+
+
+ Accessibility
+
+
+
+
+ Screen Readers: JAWS, NVDA, Window-Eyes, System Access
+
+
+
+
+ The following settings enable the use of Sandboxie in combination with accessibility software. Please note that some measure of Sandboxie protection is necessarily lost when these settings are in effect.
+
+
+
+
+ To compensate for the lost protection, please consult the Drop Rights settings page in the Restrictions settings group.
+
+
+
+
+ Edit ini Section
+
+
+
+
+ Edit ini
+
+
+
+
+ Cancel
+
+
+
+
+ Save
+
+
+
+
+ PopUpWindow
+
+
+ SandboxiePlus Notifications
+
+
+
+
+ ProgramsDelegate
+
+
+ Group: %1
+
+
+
+
+ QObject
+
+
+ Drive %1
+
+
+
+
+ QPlatformTheme
+
+
+ OK
+
+
+
+
+ Apply
+
+
+
+
+ Cancel
+
+
+
+
+ &Yes
+
+
+
+
+ &No
+
+
+
+
+ RecoveryWindow
+
+
+ SandboxiePlus - Recovery
+ SandboxiePlus - 回復
+
+
+
+ Add Folder
+ フォルダを追加
+
+
+
+ Delete Content
+ 内容を削除
+
+
+
+ Recover target:
+ 回復先:
+
+
+
+ Refresh
+ 更新
+
+
+
+ Recover
+ 回復
+
+
+
+ Delete
+ 削除
+
+
+
+ Close
+ 閉じる
+
+
+
+ Show All Files
+ すべてのファイルを表示
+
+
+
+ TextLabel
+ TextLabel
+
+
+
+ SelectBoxWindow
+
+
+ SandboxiePlus select box
+
+
+
+
+ Run Sandboxed
+
+
+
+
+ Sandbox
+
+
+
+
+ Run Outside the Sandbox
+
+
+
+
+ Run As UAC Administrator
+
+
+
+
+ Select the sandbox in which to start the program, installer or document.
+
+
+
+
+ Run in a new Sandbox
+
+
+
+
+ SettingsWindow
+
+
+ SandboxiePlus Settings
+
+
+
+
+ General Config
+ グローバル設定
+
+
+
+ General Options
+ 全般
+
+
+
+ UI Language:
+ UI Language:
+
+
+
+ Show file recovery window when emptying sandboxes
+ サンドボックスを空にしようとした時、リカバリウィンドウを表示
+
+
+
+ Count and display the disk space occupied by each sandbox
+ 各サンドボックスが使用中のディスク容量を計算し表示
+
+
+
+ Open urls from this ui sandboxed
+
+
+
+
+ SandMan Options
+ SandMan 設定
+
+
+
+ Show the Recovery Window as Always on Top
+ 「ファイル回復」ウィンドウを常に手前に表示
+
+
+
+ Recovery Options
+ リカバリオプション
+
+
+
+ Hotkey for bringing sandman to the top:
+ サンドボックスマネージャを前面に持ってくるホットキー
+
+
+
+ Hotkey for terminating all boxed processes:
+ 全てのボックス化されたプロセスを強制終了するホットキー
+
+
+
+ Run box operations asynchronously whenever possible (like content deletion)
+
+
+
+
+ Hotkey for suspending process/folder forcing:
+
+
+
+
+ Notifications
+
+
+
+
+ Add Entry
+
+
+
+
+ Message ID
+
+
+
+
+ Message Text (optional)
+
+
+
+
+ SBIE Messages
+
+
+
+
+ Delete Entry
+
+
+
+
+ Notification Options
+
+
+
+
+ Sandboxie may be issue <a href="sbie://docs/sbiemessages">SBIE Messages</a> to the Message Log and shown them as Popups. Some messages are informational and notify of a common, or in some cases special, event that has occurred, other messages indicate an error condition.<br />You can hide selected SBIE messages from being popped up, using the below list:
+
+
+
+
+ Disable SBIE messages popups (they will still be logged to the Messages tab)
+
+
+
+
+ This option also enables asynchronous operation when needed and suspends updates.
+
+
+
+
+ Suppress pop-up notifications when in game / presentation mode
+
+
+
+
+ Show file migration progress when copying large files into a sandbox
+
+
+
+
+ Show recoverable files as notifications
+
+
+
+
+ Shell Integration
+ シェル統合
+
+
+
+ Windows Shell
+
+
+
+
+ Add 'Run Un-Sandboxed' to the context menu
+ [サンドボックス化しないで実行] を右クリックに追加
+
+
+
+ Start UI with Windows
+ Windows の起動時
+
+
+
+ Integrate with Host Start Menu
+
+
+
+
+ Scan shell folders and offer links in run menu
+
+
+
+
+ Start Menu Integration
+
+
+
+
+ Add 'Run Sandboxed' to the explorer context menu
+ [サンドボックス化して実行] 操作を右クリックに追加
+
+
+
+ Start Sandbox Manager
+ サンドボックスマネージャの起動
+
+
+
+ Run Sandboxed - Actions
+ [サンドボックス化して実行] 操作
+
+
+
+ Always use DefaultBox
+ 常に DefaultBox を使う
+
+
+
+ Start UI when a sandboxed process is started
+ サンドボックス化したプログラムの起動時
+
+
+
+ Integrate with Host Desktop
+
+
+
+
+ System Tray
+
+
+
+
+ Show boxes in tray list:
+
+
+
+
+ Show Icon in Systray:
+
+
+
+
+ Systray options
+
+
+
+
+ Use Compact Box List
+
+
+
+
+ Show a tray notification when automatic box operations are started
+
+
+
+
+ On main window close:
+
+
+
+
+ Open/Close from/to tray with a single click
+
+
+
+
+ Minimize to tray
+
+
+
+
+ Run Menu
+
+
+
+
+
+
+
+
+ Name
+
+
+
+
+ Command Line
+
+
+
+
+ Add program
+
+
+
+
+ Move Up
+
+
+
+
+ Move Down
+
+
+
+
+ You can configure custom entries for all sandboxes run menus.
+
+
+
+
+
+
+ Remove
+
+
+
+
+ Interface Config
+ インターフェイス構成
+
+
+
+ User Interface
+ ユーザーインターフェイス
+
+
+
+ Use a Page Tree in the Box Options instead of Nested Tabs *
+
+
+
+
+
+ Interface Options
+ インターフェイス設定
+
+
+
+ Make Box Icons match the Border Color
+
+
+
+
+ Show overlay icons for boxes and processes
+
+
+
+
+ Use Fusion Theme
+
+
+
+
+ Use large icons in box list *
+
+
+
+
+ Don't show icons in menus *
+
+
+
+
+ * a partially checked checkbox will leave the behavior to be determined by the view mode.
+
+
+
+
+ Alternate row background in lists
+
+
+
+
+ Use new config dialog layout *
+
+
+
+
+ Use Dark Theme
+
+
+
+
+ Show "Pizza" Background in box list *
+
+
+
+
+ Hide Sandboxie's own processes from the task list
+
+
+
+
+ Font Scaling
+
+
+
+
+ Select font
+
+
+
+
+ Reset font
+
+
+
+
+ Graphic Options
+
+
+
+
+ High DPI Scaling
+
+
+
+
+ Ini Options
+
+
+
+
+ %
+
+
+
+
+ Ini Editor Font
+
+
+
+
+ #
+
+
+
+
+ (Restart required)
+
+
+
+
+ External Ini Editor
+
+
+
+
+ Add-Ons Manager
+ アドオン管理
+
+
+
+ Optional Add-Ons
+
+
+
+
+ Sandboxie-Plus offers numerous options and supports a wide range of extensions. On this page, you can configure the integration of add-ons, plugins, and other third-party components. Optional components can be downloaded from the web, and certain installations may require administrative privileges.
+
+
+
+
+ Status
+
+
+
+
+ Version
+
+
+
+
+ Description
+
+
+
+
+ <a href="sbie://addons">update add-on list now</a>
+
+
+
+
+ Install
+
+
+
+
+ Add-On Configuration
+ アドオン構成
+
+
+
+ Enable Ram Disk creation
+
+
+
+
+ kilobytes
+
+
+
+
+ Assign drive letter to Ram Disk
+
+
+
+
+ <a href="addon://ImDisk">Install ImDisk</a> driver to enable Ram Disk and Disk Image support.
+
+
+
+
+ Disk Image Support
+
+
+
+
+ RAM Limit
+
+
+
+
+ When a Ram Disk is already mounted you need to unmount it for this option to take effect.
+
+
+
+
+ * takes effect on disk creation
+
+
+
+
+ Support && Updates
+ サポートと更新
+
+
+
+ Sandboxie Support
+
+
+
+
+ This supporter certificate has expired, please <a href="https://sandboxie-plus.com/go.php?to=sbie-renew-cert">get an updated certificate</a>.
+
+
+
+
+ Enter the support certificate here
+
+
+
+
+ Supporters of the Sandboxie-Plus project can receive a <a href="https://sandboxie-plus.com/go.php?to=sbie-cert">supporter certificate</a>. It's like a license key but for awesome people using open source software. :-)
+
+
+
+
+ Get
+
+
+
+
+ Retrieve/Upgrade/Renew certificate using Serial Number
+
+
+
+
+ Keeping Sandboxie up to date with the rolling releases of Windows and compatible with all web browsers is a never-ending endeavor. You can support the development by <a href="https://sandboxie-plus.com/go.php?to=sbie-contribute">directly contributing to the project</a>, showing your support by <a href="https://sandboxie-plus.com/go.php?to=sbie-obtain-cert">purchasing a supporter certificate</a>, becoming a patron by <a href="https://sandboxie-plus.com/go.php?to=patreon">subscribing on Patreon</a>, or through a <a href="https://sandboxie-plus.com/go.php?to=donate">PayPal donation</a>.<br />Your support plays a vital role in the advancement and maintenance of Sandboxie.
+
+
+
+
+ SBIE_-_____-_____-_____-_____
+
+
+
+
+ In the future, don't notify about certificate expiration
+
+
+
+
+ Sandboxie Updater
+
+
+
+
+ Keep add-on list up to date
+
+
+
+
+ Update Settings
+
+
+
+
+ Hotpatches for the installed version, updates to the Templates.ini and translations.
+
+
+
+
+ Incremental Updates
+
+
+
+
+ The preview channel contains the latest GitHub pre-releases.
+
+
+
+
+ Search in the Preview channel
+
+
+
+
+ The Insider channel offers early access to new features and bugfixes that will eventually be released to the public, as well as all relevant improvements from the stable channel.
+Unlike the preview channel, it does not include untested, potentially breaking, or experimental changes that may not be ready for wider use.
+
+
+
+
+ Search in the Insider channel
+
+
+
+
+ New full installers from the selected release channel.
+
+
+
+
+ Full Upgrades
+
+
+
+
+ Check periodically for new Sandboxie-Plus versions
+
+
+
+
+ More about the <a href="https://sandboxie-plus.com/go.php?to=sbie-insider">Insider Channel</a>
+
+
+
+
+ Keep Troubleshooting scripts up to date
+
+
+
+
+ The stable channel contains the latest stable GitHub releases.
+
+
+
+
+ Search in the Stable channel
+
+
+
+
+ Update Check Interval
+
+
+
+
+ Advanced Config
+ 高度な構成
+
+
+
+ Sandboxie Config
+ Sandboxie 構成
+
+
+
+ ...
+
+
+
+
+ Sandbox default
+
+
+
+
+ Portable root folder
+
+
+
+
+ Sandbox <a href="sbie://docs/ipcrootpath">ipc root</a>:
+
+
+
+
+ Default sandbox:
+
+
+
+
+ Use Windows Filtering Platform to restrict network access
+
+
+
+
+ Sandbox <a href="sbie://docs/filerootpath">file system root</a>:
+
+
+
+
+ Activate Kernel Mode Object Filtering
+
+
+
+
+ Sandbox <a href="sbie://docs/keyrootpath">registry root</a>:
+
+
+
+
+ Sandboxing features
+
+
+
+
+ Hook selected Win32k system calls to enable GPU acceleration (experimental)
+
+
+
+
+ Use a Sandboxie login instead of an anonymous token
+
+
+
+
+ Sandboxie.ini Presets
+ Sandboxie.ini プリセット
+
+
+
+ Change Password
+
+
+
+
+ Password must be entered in order to make changes
+
+
+
+
+ Config protection
+
+
+
+
+ Only Administrator user accounts can make changes
+
+
+
+
+ Watch Sandboxie.ini for changes
+
+
+
+
+ Only Administrator user accounts can use Pause Forcing Programs command
+
+
+
+
+ Clear password when main window becomes hidden
+
+
+
+
+ Program Control
+ プログラム制御
+
+
+
+ Program Alerts
+
+
+
+
+ Path
+
+
+
+
+ Add Program
+ プログラムを追加
+
+
+
+ Issue message 1308 when a program fails to start
+
+
+
+
+ Remove Program
+ 削除
+
+
+
+ Issue message 1301 when forced processes has been disabled
+
+
+
+
+ Prevent the listed programs from starting on this system
+
+
+
+
+ When any of the following programs is launched outside any sandbox, Sandboxie will issue message SBIE1301.
+ サンドボックスの外で以下のプログラムが実行された時、Sandboxie はメッセージ SBIE 1301 を発行します。
+
+
+
+ Add Folder
+ フォルダを追加
+
+
+
+ USB Drive Sandboxing
+
+
+
+
+ Volume
+
+
+
+
+ Information
+
+
+
+
+ Sandbox for USB drives:
+
+
+
+
+ Automatically sandbox all attached USB drives
+
+
+
+
+ App Templates
+ アプリテンプレート
+
+
+
+ App Compatibility
+ アプリケーション互換性
+
+
+
+ In the future, don't check software compatibility
+
+
+
+
+ Enable
+
+
+
+
+ Disable
+
+
+
+
+ Sandboxie has detected the following software applications in your system. Click OK to apply configuration settings, which will improve compatibility with these applications. These configuration settings will have effect in all existing sandboxes and in any new sandboxes.
+
+
+
+
+ Local Templates
+
+
+
+
+ Add Template
+
+
+
+
+ Text Filter
+
+
+
+
+ This list contains user created custom templates for sandbox options
+
+
+
+
+ Edit ini Section
+ ini 編集セクション
+
+
+
+ Save
+ 保存
+
+
+
+ Edit ini
+ ini を編集
+
+
+
+ Cancel
+ キャンセル
+
+
+
+ SnapshotsWindow
+
+
+ SandboxiePlus - Snapshots
+
+
+
+
+ Selected Snapshot Details
+
+
+
+
+ Name:
+
+
+
+
+ When deleting a snapshot content, it will be returned to this snapshot instead of none.
+
+
+
+
+ Default snapshot
+
+
+
+
+ Description:
+
+
+
+
+ Snapshot Actions
+
+
+
+
+ Take Snapshot
+
+
+
+
+ Remove Snapshot
+
+
+
+
+ Go to Snapshot
+
+
+
+
diff --git a/TRANSLATING.md b/TRANSLATING.md
index 8956babc..fb3fcc1a 100644
--- a/TRANSLATING.md
+++ b/TRANSLATING.md
@@ -26,8 +26,8 @@ To achieve this goal, Sandboxie has established a translation program that enabl
|Hebrew|Yes| |
|Hungarian|Yes|Yes - Mar 30, 2023|
|Indonesian|Yes| |
-|Italian|Yes - Apr 24, 2023|Yes - Apr 25, 2023|
-|Japanese|Yes| |
+|Italian|Yes - Aug 25, 2023|Yes - Sep 29, 2023|
+|Japanese|Yes|Yes - Jan 25, 2024|
|Korean|Yes - Feb 18, 2023|Yes - Apr 17, 2023|
|Macedonian|Yes| |
|Polish|Yes|Yes - Mar 15, 2023|