My Chocolatey packages
Automatic Chocolatey Package Update Powershell Module
Install-PackageProvider -Name NuGet -Force
Set-PSRepository -Name PSGallery -InstallationPolicy Trusted
Install-Module au -Scope CurrentUser
Get-Module au -ListAvailable | select Name, Version
cd PACKAGE
# Force package update (when RemoteVersion is latest)
$au_Force = $true
update.ps1
# Force package update (when RemoteVersion is latest)
# SET Force = $true in file update_all.ps1
update_all.ps1
Get-ChildItem -Filter *.nupkg -Recurse | Remove-Item
choco install teamviewer.host.*.nupkg -fdv -s "%cd%"
choco uninstall teamviewer.host
choco pack
# show if apikey is available
choco apikey
# set apikey (from chocolatey.org/account)
choco apikey --key xxx --source https://push.chocolatey.org/
# push current nupkg
choco push