Difference between revisions of "KODIP DRGScout 3.0 Testversion"
From WPKG | Open Source Software Deployment and Distribution
m |
m |
||
Line 7: | Line 7: | ||
First the entry for packages.xml: | First the entry for packages.xml: | ||
− | + | <source lang="xml"> | |
+ | <package | ||
id="kodipdrgscout30testversion" | id="kodipdrgscout30testversion" | ||
name="KODIP DRGScout 3.0 Testversion" | name="KODIP DRGScout 3.0 Testversion" | ||
Line 18: | Line 19: | ||
<remove cmd='MsiExec.exe /q /x{7352A94B-A696-11D5-94BB-0050FC27E017}' /> | <remove cmd='MsiExec.exe /q /x{7352A94B-A696-11D5-94BB-0050FC27E017}' /> | ||
<br> | <br> | ||
− | + | </package> | |
− | + | </source> | |
This is a batch file which installs KODIP DRGScout 3.0 Testversion and corrects the permission: | This is a batch file which installs KODIP DRGScout 3.0 Testversion and corrects the permission: | ||
+ | <source lang="dos"> | ||
msiexec /i "%SOFTWARE%\DRGScout\KODIP DRG-Scout 3.0 Testversion.MSI" /q allusers=1 ADDLOCAL=ALL | msiexec /i "%SOFTWARE%\DRGScout\KODIP DRG-Scout 3.0 Testversion.MSI" /q allusers=1 ADDLOCAL=ALL | ||
cacls %PROGRAMFILES%\drgscout\data /T /E /P Benutzer:f >nul | cacls %PROGRAMFILES%\drgscout\data /T /E /P Benutzer:f >nul | ||
+ | </source> | ||
[[category:Silent Installers]] | [[category:Silent Installers]] |
Revision as of 22:33, 16 February 2008
This is a silent installer and uninstaller for KODIP DRGScout 3.0 Testversion.
KODIP DRGScout 3.0 Testversion is broken, as it was designed to be run as Administrator - so if you install it, it won't run as a normal user, but only as an Administrator - unless you correct some permissions.
This is why the installer is placed in separate batch file.
First the entry for packages.xml:
<package
id="kodipdrgscout30testversion"
name="KODIP DRGScout 3.0 Testversion"
revision="1"
reboot="false"
priority="0">
<check type="uninstall" condition="exists" path="KODIP DRG-Scout 3.0 Testversion" />
<install cmd='%SOFTWARE%\DRGScout\drgscout-install.bat'>
<remove cmd='MsiExec.exe /q /x{7352A94B-A696-11D5-94BB-0050FC27E017}' />
<br>
</package>
This is a batch file which installs KODIP DRGScout 3.0 Testversion and corrects the permission:
msiexec /i "%SOFTWARE%\DRGScout\KODIP DRG-Scout 3.0 Testversion.MSI" /q allusers=1 ADDLOCAL=ALL
cacls %PROGRAMFILES%\drgscout\data /T /E /P Benutzer:f >nul