Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...
- Passing
- Failing
- Pending
- Unknown / Exempted

Downloads:
517,502
Downloads of v 11.0.3:
36,247
Last Update:
12 Oct 2017
Package Maintainer(s):
Software Author(s):
- Torsten Wittrock
Tags:
windows update offline wsus office service pack- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

WSUS Offline Update
This is not the latest version of WSUS Offline Update available.
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
517,502
Downloads of v 11.0.3:
36,247
Maintainer(s):
Software Author(s):
- Torsten Wittrock
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
WSUS Offline Update 11.0.3
This is not the latest version of WSUS Offline Update available.
All Checks are Passing
2 Passing Test
To install WSUS Offline Update, run the following command from the command line or from PowerShell:
To upgrade WSUS Offline Update, run the following command from the command line or from PowerShell:
To uninstall WSUS Offline Update, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://chocolatey.org/api/v2. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download wsus-offline-update --internalize --version=11.0.3 --source=https://chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade wsus-offline-update -y --source="'STEP 3 URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade wsus-offline-update -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure wsus-offline-update installed
win_chocolatey:
name: wsus-offline-update
state: present
version: 11.0.3
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'wsus-offline-update' do
action :install
version '11.0.3'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: wsus-offline-update,
Version: 11.0.3,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller wsus-offline-update
{
Name = 'wsus-offline-update'
Ensure = 'Present'
Version = '11.0.3'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'wsus-offline-update':
provider => 'chocolatey',
ensure => '11.0.3',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install wsus-offline-update version="11.0.3" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 12 Oct 2017.
Using "WSUS Offline Update", you can update any computer running Microsoft Windows and Office safely, quickly and without an Internet connection.
$packageName = 'wsus-offline-update'
$url = 'http://download.wsusoffline.net/wsusoffline1103.zip'
$destdir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
Install-ChocolateyZipPackage "$packageName" "$url" "$destdir" -Checksum 65ca37fc44db59f802a021c313935cd531d90ca2da8a69b0f97de3dad8e04f99 -ChecksumType 'sha256'
#install start menu shortcut
$fileNameGen = "UpdateGenerator.exe"
$fileNameInst = "UpdateInstaller.exe"
$linkNameGen = "UpdateGenerator.lnk"
$linkNameInst = "UpdateInstaller.lnk"
$programs = [environment]::GetFolderPath([environment+specialfolder]::Programs)
$shortcutFilePathGen = Join-Path $programs $linkNameGen
$shortcutFilePathInst = Join-Path $programs $linkNameInst
$targetPathGen = Join-Path "$destdir\wsusoffline" $fileNameGen
$targetPathInst = Join-Path "$destdir\wsusoffline\client" $fileNameInst
Install-ChocolateyShortcut -shortcutFilePath $shortcutFilePathGen -targetPath $targetPathGen
Install-ChocolateyShortcut -shortcutFilePath $shortcutFilePathInst -targetPath $targetPathInst
$linkNameGen = "UpdateGenerator.lnk"
$linkNameInst = "UpdateInstaller.lnk"
$programs = [environment]::GetFolderPath([environment+specialfolder]::Programs)
$shortcutFilePathGen = Join-Path $programs $linkNameGen
$shortcutFilePathInst = Join-Path $programs $linkNameInst
if(Test-Path $shortcutFilePathGen) {
del $shortcutFilePathGen
}
if(Test-Path $shortcutFilePathInst) {
del $shortcutFilePathInst
}
Log in or click on link to see number of positives.
- wsus-offline-update.11.0.3.nupkg (46b6c01066d7) - ## / 61
- wsusoffline1103.zip (65ca37fc44db) - ## / 59
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Version | Downloads | Last Updated | Status |
---|---|---|---|
WSUS Offline Update 12.0 | 4543 | Friday, April 17, 2020 | Approved |
WSUS Offline Update 11.8.3 | 1972 | Thursday, November 14, 2019 | Approved |
WSUS Offline Update 11.8.2 | 416 | Monday, November 4, 2019 | Approved |
WSUS Offline Update 11.8.1 | 948 | Thursday, September 12, 2019 | Approved |
WSUS Offline Update 11.8 | 861 | Monday, August 5, 2019 | Approved |
WSUS Offline Update 11.7.4 | 469 | Wednesday, July 17, 2019 | Approved |
WSUS Offline Update 11.7.3 | 653 | Tuesday, June 25, 2019 | Approved |
WSUS Offline Update 11.7.2 | 668 | Wednesday, May 22, 2019 | Approved |
WSUS Offline Update 11.7.1 | 355 | Thursday, May 16, 2019 | Approved |
WSUS Offline Update 11.7 | 293 | Friday, May 10, 2019 | Approved |
WSUS Offline Update 11.6.2 | 763 | Saturday, April 13, 2019 | Approved |
WSUS Offline Update 11.6.1 | 3119 | Wednesday, March 13, 2019 | Approved |
WSUS Offline Update 11.6 | 7519 | Friday, February 22, 2019 | Approved |
WSUS Offline Update 11.5 | 52106 | Friday, September 28, 2018 | Approved |
WSUS Offline Update 11.4.0.20180925 | 1506 | Tuesday, September 25, 2018 | Approved |
WSUS Offline Update 11.4 | 55548 | Monday, May 28, 2018 | Approved |
WSUS Offline Update 11.3 | 13734 | Wednesday, May 2, 2018 | Approved |
WSUS Offline Update 11.2.2 | 7490 | Monday, April 16, 2018 | Approved |
WSUS Offline Update 11.2.1 | 8904 | Wednesday, March 28, 2018 | Approved |
WSUS Offline Update 11.2 | 3502 | Friday, March 23, 2018 | Approved |
WSUS Offline Update 11.1.1 | 34168 | Tuesday, January 16, 2018 | Approved |
WSUS Offline Update 11.1 | 12941 | Monday, December 18, 2017 | Approved |
WSUS Offline Update 11.0.3 | 36247 | Thursday, October 12, 2017 | Approved |
WSUS Offline Update 11.0.2 | 3078 | Saturday, October 7, 2017 | Approved |
WSUS Offline Update 11.0.1 | 45832 | Friday, July 14, 2017 | Approved |
WSUS Offline Update 11.0 | 7969 | Wednesday, June 28, 2017 | Approved |
WSUS Offline Update 10.9.2 | 56694 | Sunday, March 19, 2017 | Approved |
WSUS Offline Update 10.9.1 | 25897 | Sunday, January 29, 2017 | Approved |
WSUS Offline Update 10.9 | 13111 | Saturday, January 7, 2017 | Approved |
WSUS Offline Update 10.8.1 | 21123 | Thursday, December 1, 2016 | Approved |
WSUS Offline Update 10.8 | 42163 | Monday, September 26, 2016 | Approved |
WSUS Offline Update 10.7.4 | 7008 | Thursday, September 15, 2016 | Approved |
WSUS Offline Update 10.7.3.2 | 16610 | Monday, August 22, 2016 | Approved |
WSUS Offline Update 10.7.3 | 313 | Monday, August 22, 2016 | Approved |
WSUS Offline Update 10.7.2 | 12598 | Wednesday, August 3, 2016 | Approved |
WSUS Offline Update 10.7.1 | 3819 | Friday, July 29, 2016 | Approved |
WSUS Offline Update 10.7 | 4867 | Friday, July 15, 2016 | Approved |
WSUS Offline Update 10.6.3 | 381 | Sunday, July 10, 2016 | Approved |
WSUS Offline Update 10.6.2 | 991 | Thursday, April 21, 2016 | Approved |
WSUS Offline Update 10.6.1 | 521 | Friday, March 18, 2016 | Approved |
WSUS Offline Update 10.6 | 434 | Thursday, March 3, 2016 | Approved |
WSUS Offline Update 10.5 | 394 | Monday, February 15, 2016 | Approved |
WSUS Offline Update 10.4 | 430 | Monday, February 1, 2016 | Approved |
WSUS Offline Update 10.3.2 | 373 | Thursday, January 14, 2016 | Approved |
WSUS Offline Update 10.3.1 | 360 | Tuesday, January 5, 2016 | Approved |
WSUS Offline Update 10.3 | 334 | Tuesday, January 5, 2016 | Approved |
WSUS Offline Update 10.2.1 | 383 | Thursday, November 12, 2015 | Approved |
WSUS Offline Update 10.2 | 317 | Thursday, October 15, 2015 | Approved |
WSUS Offline Update 10.1 | 321 | Thursday, September 17, 2015 | Approved |
WSUS Offline Update 10.0.2 | 350 | Friday, September 11, 2015 | Approved |
WSUS Offline Update 10.0.1 | 364 | Thursday, September 10, 2015 | Approved |
WSUS Offline Update 10.0 | 345 | Thursday, August 20, 2015 | Approved |
WSUS Offline Update 9.8 | 329 | Friday, August 7, 2015 | Approved |
WSUS Offline Update 9.7 | 355 | Thursday, June 25, 2015 | Approved |
WSUS Offline Update 9.6 | 486 | Friday, April 3, 2015 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about WSUS Offline Update and the WSUS Offline Update package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or WSUS Offline Update, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.