Difference between revisions of "FlowFact"
From WPKG | Open Source Software Deployment and Distribution
m |
m |
||
Line 38: | Line 38: | ||
The only action requiring manual intervention is the Explorer window opened after installation - so perhaps it's a good idea to reboot the system after installation. | The only action requiring manual intervention is the Explorer window opened after installation - so perhaps it's a good idea to reboot the system after installation. | ||
+ | |||
+ | ==sample .bat script== | ||
+ | |||
+ | <pre> | ||
+ | %SOFTWARE%\flowfact\dotnetfx.exe /q /c:"install /q" | ||
+ | |||
+ | %SOFTWARE%\flowfact\dotnetfx2.exe /q /c:"install /q" | ||
+ | |||
+ | %SOFTWARE%\flowfact\langpackfx2.exe /q /c:"install /q" | ||
+ | |||
+ | msiexec /q /i \\edu\dfs\flowfact\CRRedist2005_x86.msi ALLUSERS=1 | ||
+ | |||
+ | msiexec /q /i \\edu\dfs\flowfact\CRRedist2005_x86_de.msi ALLUSERS=1 | ||
+ | |||
+ | |||
+ | regedit -s %SOFTWARE%\FlowFact\flowfact.reg | ||
+ | |||
+ | %SOFTWARE%\FlowFact\setup.exe | ||
+ | </pre> | ||
[[Category:Silent Installers]] | [[Category:Silent Installers]] |
Revision as of 12:37, 21 May 2007
FlowFact can be installed silently, but it needs some software installed before:
- .NET 1.1
- .NET 2.0
- .NET language pack
- Crystal Reports
- Crystal Reports language pack
- import registry entry
- launch FlowFact installer
registry entry
Save it to file, and import with "regedit -s %SOFTWARE%\FlowFact\flowfact.reg":
REGEDIT4 [HKEY_LOCAL_MACHINE\SOFTWARE\FlowFact] "DOTNETFX"="1" "DOTNETFX2"="1" "DOTNETFX2LangpackDEU"="1" "DOTNET2FlowFactNetApp"="1" "CRDOTNET2"="1"
FlowFact installation
The installer makes almost no actions requiring manual intervention if it finds all components installed. You can call it by simply:
%SOFTWARE%\FlowFact\setup.exe
The only action requiring manual intervention is the Explorer window opened after installation - so perhaps it's a good idea to reboot the system after installation.
sample .bat script
%SOFTWARE%\flowfact\dotnetfx.exe /q /c:"install /q" %SOFTWARE%\flowfact\dotnetfx2.exe /q /c:"install /q" %SOFTWARE%\flowfact\langpackfx2.exe /q /c:"install /q" msiexec /q /i \\edu\dfs\flowfact\CRRedist2005_x86.msi ALLUSERS=1 msiexec /q /i \\edu\dfs\flowfact\CRRedist2005_x86_de.msi ALLUSERS=1 regedit -s %SOFTWARE%\FlowFact\flowfact.reg %SOFTWARE%\FlowFact\setup.exe