diff --git a/shopbot/shopbot.nuspec b/shopbot/shopbot.nuspec new file mode 100644 index 0000000..c7838fe --- /dev/null +++ b/shopbot/shopbot.nuspec @@ -0,0 +1,20 @@ + + + + shopbot + 3.8.50 + Shopbot Control Software + ShopBot Tools + Adam + https://www.shopbottools.com/support/control-software + false + With the ShopBot Control Software, you can enter individual commands to move the tool or run a ShopBot Part File, a cutting file created in a CAD/CAM program such as the ShopBot Design Software Suite, to cut out a part. + The software that runs ShopBot CNC Tools. + + © 2006-2020 by ShopBot Tools, Inc. + router cnc shopbot + + + + + diff --git a/shopbot/tools/chocolateyInstall.ps1 b/shopbot/tools/chocolateyInstall.ps1 new file mode 100644 index 0000000..29a9b62 --- /dev/null +++ b/shopbot/tools/chocolateyInstall.ps1 @@ -0,0 +1,14 @@ +$packageName = 'shopbot' +$installerType = 'exe' +$silentArgs = '/verysilent /suppressmsgboxes /norestart /sp-' +$url64 = '\\ucs\software\Setup_Shopbot3_8_50.exe' +$checksum64 = '40ceb163b1cb6395bd4704db1da5359b20ee769ddb413609e4608d780db44c33' +$checksumType64 = 'sha256' +$validExitCodes = @(0,1223) +Install-ChocolateyPackage -PackageName $packageName ` + -FileType $installerType ` + -SilentArgs $silentArgs ` + -Url64bit $url64 ` + -ValidExitCodes $validExitCodes ` + -Checksum64 $checksum64 ` + -ChecksumType64 $checksumType64