Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

223,473

Downloads of v 5.29.0.5570:

5

Last Update:

01 Aug 2025

Published Date:

01 Aug 2025

Package Maintainer(s):

Software Author(s):

  • Amazon Web Services
  • Inc.

Tags:

Amazon WorkSpaces

(Waiting for Maintainer to take corrective action)

  • 1
  • 2
  • 3

5.29.0.5570 | Updated: 01 Aug 2025

Downloads:

223,473

Downloads of v 5.29.0.5570:

5

Published:

01 Aug 2025

Maintainer(s):

Software Author(s):

  • Amazon Web Services
  • Inc.

Amazon WorkSpaces 5.29.0.5570

(Waiting for Maintainer to take corrective action)

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Amazon Web Services, Inc. The inclusion of Amazon Web Services, Inc. trademark(s), if any, upon this webpage is solely to identify Amazon Web Services, Inc. goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Failed

Details

Scan Testing Pending

IMPORTANT

This version is in moderation and has not yet been approved. This means it doesn't show up under normal search.

  • Until approved, you should consider this package version unsafe - it could do very bad things to your system (it probably doesn't but you have been warned, that's why we have moderation).
  • This package version can change wildly over the course of moderation until it is approved. If you install it and it later has changes to this version, you will be out of sync with any changes that have been made to the package. Until approved, you should consider that this package version doesn't even exist.
  • You cannot install this package under normal scenarios. See How to install package version under moderation for more information.
  • There are also no guarantees that it will be approved.
WARNING

There are versions of this package awaiting moderation (possibly just this one). See the Version History section below.

virtualex (maintainer) on 01 Aug 2025 06:02:20 +00:00:

User 'virtualex' (maintainer) submitted package.

chocolatey-ops (reviewer) on 01 Aug 2025 06:34:24 +00:00:

amazon-workspaces has passed automated validation. It may have or may still fail other checks like testing (verification).
Congratulations! This package passed automatic validation review without flagging on any issues the validator currently checks. A human review could still turn up issues a computer may not easily find.

chocolatey-ops (reviewer) on 01 Aug 2025 09:04:49 +00:00:

amazon-workspaces has failed automated package testing (verification).
Please visit https://gist.github.com/choco-bot/7c28ea0d503f0611aa350b5395a40e82 for details.
The package status will be changed and will be waiting on your next actions.

  • NEW! We have a test environment for you to replicate the testing we do. This can be used at any time to test packages! See https://github.com/chocolatey-community/chocolatey-test-environment
  • Please log in and leave a review comment if you have questions and/or comments.
  • If you see the verifier needs to rerun testing against the package without resubmitting (a issue in the test results), you can do that on the package page in the review section.
  • If the verifier is incompatible with the package, please log in and leave a review comment if the package needs to bypass testing (e.g. package installs specific drivers).
  • Automated testing can also fail when a package is not completely silent or has pop ups (AutoHotKey can assist - a great example is the VeraCrypt package).
  • A package that cannot be made completely unattended should have the notSilent tag. Note that this must be approved by moderators.
Description

Amazon WorkSpaces plays nice with everyone. Access your personal Windows environment on Android, iOS, Fire, Mac, PC and Chromebook devices.

Please Note: This is an automatically updated package. If you find it is out of date by more than a day or two, please contact the maintainer(s) and let them know the package is no longer updating correctly.


tools\chocolateyinstall.ps1
$ErrorActionPreference  = 'Stop';

$toolsDir               = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$url                    = 'https://d2td7dqidlhjx7.cloudfront.net/prod/global/windows/Amazon+WorkSpaces.msi'
$checksum               = '0462AA28143C48AE44330499C757A1CD01F4695B56B8D186F8E3FFC93B46F8CF'
$checksumType           = 'sha256'

$packageArgs = @{
  packageName           = $env:ChocolateyPackageName
  unzipLocation         = $toolsDir
  fileType              = 'msi'
  softwareName          = "Amazon WorkSpaces*"
  url                   = $url
  checksum              = $checksum
  checksumType          = $checksumType
  silentArgs            = '/qn REBOOT=ReallySuppress'
  validExitCodes        = @(0)
}

Install-ChocolateyPackage @packageArgs
tools\chocolateyuninstall.ps1
$ErrorActionPreference = 'Stop';
$packageArgs = @{
  packageName   = $env:ChocolateyPackageName
  softwareName  = '"Amazon WorkSpaces*"'
  fileType      = 'MSI'
  silentArgs    = "/qn /norestart"
  validExitCodes= @(0, 3010, 1605, 1614, 1641)
}

$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $packageArgs['softwareName']

if ($key.Count -eq 1) {
  $key | ForEach-Object { 
    $packageArgs['file'] = "$($_.UninstallString)"
    if ($packageArgs['fileType'] -eq 'MSI') {
      $packageArgs['silentArgs'] = "$($_.PSChildName) $($packageArgs['silentArgs'])"
      
      $packageArgs['file'] = ''
    }

    Uninstall-ChocolateyPackage @packageArgs
  }
} elseif ($key.Count -eq 0) {
  Write-Warning "$packageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
  Write-Warning "$($key.Count) matches found!"
  Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
  Write-Warning "Please alert package maintainer the following keys were matched:"
  $key | ForEach-Object {Write-Warning "- $($_.DisplayName)"}
}

No results available for this package. We are building up results for older packages over time so expect to see results. If this is a new package, it should have results within a day or two.

Add to Builder Version Downloads Last Updated Status
Amazon WorkSpaces 5.29.0.5570 5 Friday, August 1, 2025
Waiting for Maintainer
Amazon WorkSpaces 5.27.1.5420 2991 Tuesday, May 6, 2025 Approved
Amazon WorkSpaces 5.27.0.5408 1280 Wednesday, April 30, 2025 Approved
Amazon WorkSpaces 5.26.2.5308 2663 Friday, March 28, 2025 Approved
Amazon WorkSpaces 5.26.1.5260 4948 Wednesday, March 12, 2025 Approved
Amazon WorkSpaces 5.26.0.5227 1644 Wednesday, March 5, 2025 Approved
Amazon WorkSpaces 5.25.0.5114 3858 Friday, December 20, 2024 Approved
Amazon WorkSpaces 5.24.1.5059 2620 Saturday, November 23, 2024 Approved
Amazon WorkSpaces 5.23.0.4889 6060 Tuesday, October 1, 2024 Approved
Amazon WorkSpaces 5.22.1.4847 4344 Friday, September 6, 2024 Approved
Amazon WorkSpaces 5.22.0.4795 3513 Friday, August 16, 2024 Approved
Amazon WorkSpaces 5.21.0.4736 6394 Thursday, July 4, 2024 Approved
Amazon WorkSpaces 5.20.0.4722 3582 Wednesday, June 19, 2024 Approved
Amazon WorkSpaces 5.19.3.4613 10014 Tuesday, April 30, 2024 Approved
Amazon WorkSpaces 5.19.0.4532 11653 Friday, March 1, 2024 Approved
Amazon WorkSpaces 5.18.0.4508 10889 Tuesday, February 6, 2024 Approved
Amazon WorkSpaces 5.17.0.4420 14943 Friday, November 17, 2023 Approved
Amazon WorkSpaces 5.16.0.4366 6713 Friday, October 27, 2023 Approved
Amazon WorkSpaces 5.15.1.4353 10224 Wednesday, September 20, 2023 Approved
Amazon WorkSpaces 5.13.0.4309 7534 Wednesday, August 30, 2023 Approved
Amazon WorkSpaces 5.12.1.4291 5290 Thursday, August 17, 2023 Approved
Amazon WorkSpaces 5.12.0.4246 11417 Tuesday, July 11, 2023 Approved
Amazon WorkSpaces 5.11.0.4234 2974 Tuesday, July 4, 2023 Approved
Amazon WorkSpaces 5.10.0.4196 3184 Tuesday, June 20, 2023 Approved
Amazon WorkSpaces 5.9.0.4129 8478 Wednesday, May 10, 2023 Approved
Amazon WorkSpaces 5.8.0.4065 5537 Friday, April 7, 2023 Approved
Amazon WorkSpaces 5.7.0.3472 3364 Friday, March 3, 2023 Approved
Amazon WorkSpaces 5.6.4.3457 2239 Thursday, February 2, 2023 Approved
Amazon WorkSpaces 5.6.2.3417 3534 Wednesday, January 11, 2023 Approved
Amazon WorkSpaces 5.6.0.3404 1889 Wednesday, December 21, 2022 Approved
Amazon WorkSpaces 5.5.0.3276 2457 Tuesday, November 15, 2022 Approved
Amazon WorkSpaces 5.4.0.3226 2440 Friday, September 30, 2022 Approved
Amazon WorkSpaces 5.3.0.3163 2375 Tuesday, September 13, 2022 Approved
Amazon WorkSpaces 5.2.1.3123 2685 Wednesday, August 17, 2022 Approved
Amazon WorkSpaces 5.2.0.3089 2004 Wednesday, August 3, 2022 Approved
Amazon WorkSpaces 5.1.0.3029 2451 Friday, July 1, 2022 Approved
Amazon WorkSpaces 5.0.0.2559 2154 Friday, June 3, 2022 Approved
Amazon WorkSpaces 4.0.6.2415 8037 Tuesday, December 21, 2021 Approved
Amazon WorkSpaces 4.0.5.2379 1645 Wednesday, November 24, 2021 Approved
Amazon WorkSpaces 4.0.4.2358 1542 Friday, November 5, 2021 Approved
Amazon WorkSpaces 4.0.3.2345 1836 Wednesday, October 6, 2021 Approved
Amazon WorkSpaces 4.0.2.2319 1763 Thursday, September 2, 2021 Approved
Amazon WorkSpaces 4.0.1.2262 1827 Friday, July 30, 2021 Approved
Amazon WorkSpaces 4.0.0.2217 1619 Thursday, July 1, 2021 Approved
Amazon WorkSpaces 3.1.9.2201 831 Thursday, June 24, 2021 Approved
Amazon WorkSpaces 3.1.8.2150 1355 Friday, May 28, 2021 Approved
Amazon WorkSpaces 3.1.7.2102 1256 Friday, April 30, 2021 Approved
Amazon WorkSpaces 3.1.6.2064 785 Friday, April 9, 2021 Approved
Amazon WorkSpaces 3.1.5.2056 462 Friday, April 2, 2021 Approved
Amazon WorkSpaces 3.1.4.1996 196 Tuesday, March 30, 2021 Approved
Amazon Workspaces 3.1.3 3455 Saturday, March 6, 2021 Approved
Amazon Workspaces 3.1.2 2048 Wednesday, January 20, 2021 Approved
Amazon Workspaces 3.1.0 1422 Thursday, December 24, 2020 Approved
Amazon Workspaces 3.0.11 5906 Monday, October 5, 2020 Approved
Amazon Workspaces 3.0.10 198 Thursday, October 1, 2020 Approved
Amazon Workspaces 3.0.9 1311 Monday, August 17, 2020 Approved
Amazon Workspaces 3.0.7 588 Saturday, July 11, 2020 Approved
Amazon Workspaces 2.5.11 1375 Thursday, January 16, 2020 Approved
Amazon Workspaces 2.5.8 544 Friday, July 5, 2019 Approved
Amazon Workspaces 2.5.7 304 Monday, June 3, 2019 Approved
Amazon Workspaces 2.5.5 351 Sunday, April 7, 2019 Approved

This package has no dependencies.

Discussion for the Amazon WorkSpaces Package

Ground Rules:

  • This discussion is only about Amazon WorkSpaces and the Amazon WorkSpaces 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 Amazon WorkSpaces, 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.
comments powered by Disqus