Files
sftpgo/pkgs/choco/tools/ChocolateyInstall.ps1
Nicola Murino 47924716c1 back to development
Signed-off-by: Nicola Murino <nicola.murino@gmail.com>
2024-06-19 21:04:35 +02:00

54 lines
2.0 KiB
PowerShell

$ErrorActionPreference = 'Stop'
$packageName = 'sftpgo'
$softwareName = 'SFTPGo'
$url = 'https://github.com/drakkan/sftpgo/releases/download/v2.6.1/sftpgo_v2.6.1_windows_x86_64.exe'
$checksum = 'DACF5370782953591DC67D4B172381A30FE4C064325B5C2A785BB815BBE31EC8'
$silentArgs = '/VERYSILENT'
$validExitCodes = @(0)
$packageArgs = @{
packageName = $packageName
fileType = 'exe'
file = $fileLocation
url = $url
checksum = $checksum
checksumType = 'sha256'
silentArgs = $silentArgs
validExitCodes= $validExitCodes
softwareName = $softwareName
}
Install-ChocolateyPackage @packageArgs
$DefaultDataPath = Join-Path -Path $ENV:ProgramData -ChildPath "SFTPGo"
$DefaultConfigurationFilePath = Join-Path -Path $DefaultDataPath -ChildPath "sftpgo.json"
$EnvDirPath = Join-Path -Path $DefaultDataPath -ChildPath "env.d"
# `t = tab
Write-Output "---------------------------"
Write-Output ""
Write-Output "If you have never used SFTPGo before, the web administration panel is located here:"
Write-Output "`thttp://localhost:8080/web/admin"
Write-Output ""
Write-Output "Default web administration port:"
Write-Output "`t8080"
Write-Output "Default SFTP port:"
Write-Output "`t2022"
Write-Output ""
Write-Output "Default data location:"
Write-Output "`t$DefaultDataPath"
Write-Output "Default configuration file location:"
Write-Output "`t$DefaultConfigurationFilePath"
Write-Output "Directory to create environment variable files to set custom configurations:"
Write-Output "`t$EnvDirPath"
Write-Output "If the SFTPGo service does not start, make sure that TCP ports 2022 and 8080 are"
Write-Output "not used by other services or change the SFTPGo configuration to suit your needs."
Write-Output ""
Write-Output "General information (README) location:"
Write-Output "`thttps://github.com/drakkan/sftpgo"
Write-Output "Documentation location:"
Write-Output "`thttps://sftpgo.github.io/"
Write-Output "Commercial support:"
Write-Output "`thttps://sftpgo.com/#pricing"
Write-Output ""
Write-Output "---------------------------"