2015-06-02 09:50:14 -04:00
|
|
|
|
$name = 'filebot'
|
2015-06-02 07:46:12 -04:00
|
|
|
|
$type = 'msi'
|
|
|
|
|
$silent = '/quiet'
|
|
|
|
|
|
2015-11-26 01:13:04 -05:00
|
|
|
|
$url32 = 'http://downloads.sourceforge.net/project/filebot/filebot/FileBot_@{version}/FileBot_@{version}_x86.msi'
|
|
|
|
|
$url64 = 'http://downloads.sourceforge.net/project/filebot/filebot/FileBot_@{version}/FileBot_@{version}_x64.msi'
|
|
|
|
|
$checksum32 = '@{x86.msi.sha256}'
|
|
|
|
|
$checksum64 = '@{x64.msi.sha256}'
|
|
|
|
|
$algorithm = 'sha256'
|
2015-06-02 07:46:12 -04:00
|
|
|
|
|
2015-06-02 14:36:33 -04:00
|
|
|
|
Install-ChocolateyPackage $name $type $silent $url32 $url64 -checksum $checksum32 -checksumType $algorithm -checksum64 $checksum64 -checksumType64 $algorithm
|