Difference between revisions of "FlowFact"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m (sample .bat script)
m
Line 13: Line 13:
 
Save it to file, and import with "regedit -s %SOFTWARE%\FlowFact\flowfact.reg":
 
Save it to file, and import with "regedit -s %SOFTWARE%\FlowFact\flowfact.reg":
  
<pre>
+
<source lang="reg">
 
REGEDIT4
 
REGEDIT4
  
Line 28: Line 28:
  
 
"CRDOTNET2"="1"
 
"CRDOTNET2"="1"
</pre>
+
</source>
  
 
==FlowFact installation==
 
==FlowFact installation==
Line 41: Line 41:
 
==sample .bat script==
 
==sample .bat script==
  
<pre>
+
<source lang="dos">
 
%SOFTWARE%\flowfact\dotnetfx.exe /q /c:"install /q"
 
%SOFTWARE%\flowfact\dotnetfx.exe /q /c:"install /q"
  
Line 56: Line 56:
  
 
%SOFTWARE%\FlowFact\setup.exe
 
%SOFTWARE%\FlowFact\setup.exe
</pre>
+
</source>
  
 
==other==
 
==other==
Line 64: Line 64:
 
Software doesn't work as a non-Administrator user unless you start it as Administrator for the first time:
 
Software doesn't work as a non-Administrator user unless you start it as Administrator for the first time:
  
<pre>
+
<source lang="dos">
 
start /i %SOFTWARE%\flowfact\FlowFact.EXE
 
start /i %SOFTWARE%\flowfact\FlowFact.EXE
 
ping -n 30 127.0.0.1
 
ping -n 30 127.0.0.1
Line 70: Line 70:
 
ping -n 120 127.0.0.1
 
ping -n 120 127.0.0.1
 
taskkill /f /im flowfact.exe
 
taskkill /f /im flowfact.exe
</pre>
+
</source>
  
 
[[Category:Silent Installers]]
 
[[Category:Silent Installers]]

Revision as of 19:25, 12 February 2008

FlowFact can be installed silently, but it needs some software installed before:

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"

start /wait msiexec /q /i %SOFTWARE%\flowfact\CRRedist2005_x86.msi ALLUSERS=1

start /wait msiexec /q /i %SOFTWARE%\flowfact\CRRedist2005_x86_de.msi ALLUSERS=1


regedit -s %SOFTWARE%\FlowFact\flowfact.reg

%SOFTWARE%\FlowFact\setup.exe

other

The installer adds a "FlowFact" uninstall string.

Software doesn't work as a non-Administrator user unless you start it as Administrator for the first time:

start /i %SOFTWARE%\flowfact\FlowFact.EXE
ping -n 30 127.0.0.1
taskkill /f /im setupadd.exe
ping -n 120 127.0.0.1
taskkill /f /im flowfact.exe