Sandboxie Forum - Check Sandboxie version? Registry key? (8404) http://www.sandboxie.com/phpbb/viewtopic.php?t=8404 en-us 90 Mon Aug 02, 2010 12:43 pm Mon Aug 02, 2010 12:43 pm tzuk: http://www.sandboxie.com/phpbb/viewtopic.php?p=56521#56521 Mon Aug 02, 2010 12:43 pm http://www.sandboxie.com/phpbb/viewtopic.php?p=56521#56521 Sandboxie version 3.47.01 adds this feature as part of the new Sandboxie License Manager. To display the version, use: [code:1:95d22c79a2]"C:\Program Files\Sandboxie\License.exe" print version[/code:1:95d22c79a2] For command line output, invoke from a command prompt console: [code:1:95d22c79a2]"C:\Program Files\Sandboxie\License.exe" silent print version | more Sandboxie License Manager Version 3.47.01[/code:1:95d22c79a2] Or for use in a batch file: [code:1:95d22c79a2]FOR /F "usebackq skip=1 tokens=2" %A IN (`"C:\Program Files\Sandboxie\License.exe" silent print version`) do set SANDBOXIE_VERSION=%A echo %SANDBOXIE_VERSION% 3.47.01[/code:1:95d22c79a2] Note that using batch-% variables in batch files requires using two percent signs, so inside a batch file, use %%A instead of just %A. FireFox31: http://www.sandboxie.com/phpbb/viewtopic.php?p=55342#55342 Tue Jul 13, 2010 10:14 pm http://www.sandboxie.com/phpbb/viewtopic.php?p=55342#55342 Thanks, I will try this! Thanks for the great product. tzuk: http://www.sandboxie.com/phpbb/viewtopic.php?p=55016#55016 Sat Jul 10, 2010 2:57 pm http://www.sandboxie.com/phpbb/viewtopic.php?p=55016#55016 Windows XP Service Pack 2 Support Tools includes a program called filever.exe. http://www.microsoft.com/downloads/details.aspx?FamilyID=49ae8576-9bb9-4126-9761-ba8011fabf38&displaylang=en http://support.microsoft.com/kb/913111 You should be able to execute this program on some EXE file in the Sandboxie installation folder and get the version number. In a future version I will add an option to Start.exe to display the current version of Sandboxie. It's a good idea. FireFox31: Check Sandboxie version? Registry key? http://www.sandboxie.com/phpbb/viewtopic.php?p=54988#54988 Fri Jul 09, 2010 10:43 pm http://www.sandboxie.com/phpbb/viewtopic.php?p=54988#54988 Hello, how can a script determine the version of the installed Sandboxie? Is there a registry key for that? I'm writing a script to deploy and upgrade Sandboxie in a workgroup. It has three steps: 1. If the current version is installed, exit. 2. If Sandboxie is installed then it must not be current, upgrade then exit. 3. Sandboxie must not be installed, install it. I've only found: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Sandboxie\DisplayName but haven't determined what happens when I upgrade. Will the value in there change. Or does anyone have a better Windows BAT script for running this? Thanks.