Difference between revisions of "FreeSSHd"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(New page: freeSSHd, like it's name says, is a free implementation of an SSH server. It provides strong encryption and authentication over insecure networks like Internet. Users can open remote conso...)
 
m
Line 1: Line 1:
 +
This is a silent installer for freeSSHd.
 +
 
freeSSHd, like it's name says, is a free implementation of an SSH server. It provides strong encryption and authentication over insecure networks like Internet. Users can open remote console or even access their remote files thanks to buit-in SFTP server.
 
freeSSHd, like it's name says, is a free implementation of an SSH server. It provides strong encryption and authentication over insecure networks like Internet. Users can open remote console or even access their remote files thanks to buit-in SFTP server.
  
Line 6: Line 8:
  
 
<source lang="xml">
 
<source lang="xml">
    <package
+
<package
 
         id="freeSSHd"
 
         id="freeSSHd"
 
         name="freeSSHd"
 
         name="freeSSHd"
Line 23: Line 25:
 
          
 
          
 
         <upgrade cmd='"%SOFTWARE%\freeSSHd.exe" /VERYSILENT /NOICON /SUPPRESSMSGBOXES' />
 
         <upgrade cmd='"%SOFTWARE%\freeSSHd.exe" /VERYSILENT /NOICON /SUPPRESSMSGBOXES' />
    </package>
+
</package>
 
</source>
 
</source>
  
 
[[Category:Silent_Installers]]
 
[[Category:Silent_Installers]]

Revision as of 18:23, 9 February 2008

This is a silent installer for freeSSHd.

freeSSHd, like it's name says, is a free implementation of an SSH server. It provides strong encryption and authentication over insecure networks like Internet. Users can open remote console or even access their remote files thanks to buit-in SFTP server.

freeSSHd can be run on NT based operating system, starting from Windows NT version 4.0. There are no special hardware requirements, any computer that can run WinNT will be sufficient. freeSSHd uses very low amount of resources, but you must keep in mind the memory consumption of applications that your remote users will use and number of users as well.

http://www.freesshd.com

<package
        id="freeSSHd"
        name="freeSSHd"
        revision="120"
        reboot="false"
        priority="1">
        
        <check type="file" condition="exists" path="C:\Program Files\freeSSHd\FreeSSHDService.exe" />
        <check type="uninstall" condition="exists" path="freeSSHd 1.2.0" />

        <install cmd='"%SOFTWARE%\freeSSHd.exe" /VERYSILENT /NOICON /SUPPRESSMSGBOXES'>
            <exit code="0" />
        </install>
        
        <remove  cmd='"%PROGRAMFILES%\freeSSHd\unins000.exe" /VERYSILENT' />
        
        <upgrade cmd='"%SOFTWARE%\freeSSHd.exe" /VERYSILENT /NOICON /SUPPRESSMSGBOXES' />
</package>