Help - Search - Members - Calendar
Full Version: Sandboxie silent
MSFN Forums > Unattended Windows Discussion & Support > Application Installs

   


Google Internet Forums Unattended CD/DVD Guide
skavenger
Hi folks,

for all who want install Sandboxie silent in specific language and registered.

CODE
SandboxieInstall338.exe /LANG=1031 /Install /S


The switch /LANG must be the first switch. In this case 1031 is for german.
Other LANG-Codes can be found in: SbieMsg.dll

If you want to register silently to, you must add the following

CODE
copy %programfiles%\Sandboxie\Start.exe %programfiles%\Sandboxie\Start2.exe
%programfiles%\Sandboxie\Start2.exe /register local xxxxxxx Licensee Industries


Example: %programfiles%\Sandboxie\Start2.exe /register local ABCDEFG User company

Hint: The first line copies the "start.exe" from Sandboxie to "start2.exe", because "start.exe" exists in XP-installation directly and if you want use "start.exe" for the registratios it causes in an error.

greetz
b-man
how do u do the last bit to copy and register with run once and is it /register local (serial) (user) (company)? and is company needed?
skavenger
I've just use a Batch-script to silent install.

install.cmd
CODE
@echo off
start /wait SandboxieInstall338.exe /LANG=1031 /Install /S
copy %programfiles%\Sandboxie\Start.exe %programfiles%\Sandboxie\Start2.exe
%programfiles%\Sandboxie\Start2.exe /register local xxxxxxx Licensee Industries


then puttet the "install.cmd" in the same path like the "SandboxieInstall338.exe" and let it run from WIHU.
I'm not using this for unattendet install in a XP-Setup-CD.

In the last line after your license-code u must write in the name, the program is licensed for, i thing the last thing is obselete and not requiered.

Try it and let us know your results.

Greetz
b-man
to get it to run for me i had to do this

CODE
@echo off

start /wait %systemdrive%\Install\SandboxieInstall.exe /Install /S /D=%programfiles%\Sandboxie\
start /"%programfiles%\Sandboxie\Start.exe /register local (serial) (user)"

exit

thats for running silent and running silent through runonce just on computer testing in virtual machine using this run once cmd

CODE
REG ADD %KEY%\066 /VE /D "Sandboxie" /f
REG ADD %KEY%\066 /V 1 /D "%Systemdrive%\install\Sandboxie.cmd" /f



and then for run once off the cd i have changed to this hopefully it works
CODE
REG ADD %KEY%\066 /VE /D "Sandboxie" /f
REG ADD %KEY%\066 /V 1 /D "%CDROM%\install\Sandboxie.cmd" /f


CODE
@echo off
SetLocal enableextensions
SET CDROM=%~d0

start /wait %CDROM%\Install\SandboxieInstall.exe /Install /S /D=%programfiles%\Sandboxie\
start /"%programfiles%\Sandboxie\Start.exe /register local (serial) (user)"

EndLocal

exit




Google Internet Forums Unattended CD/DVD Guide

This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.