Downloads:
164,130
Downloads of v 158.0.0.11194:
1,684
Last Update:
05 Nov 2024
Package Maintainer(s):
Software Author(s):
- Ubisoft Entertainment
Tags:
ubisoft-connect uplay ubisoft ubisoft-client games-distributor games-delivery ubisoft-downloader game-downloader gaming- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Ubisoft Connect
- 1
- 2
- 3
158.0.0.11194 | Updated: 05 Nov 2024
- 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:
164,130
Downloads of v 158.0.0.11194:
1,684
Maintainer(s):
Software Author(s):
- Ubisoft Entertainment
Ubisoft Connect 158.0.0.11194
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Ubisoft Entertainment. The inclusion of Ubisoft Entertainment trademark(s), if any, upon this webpage is solely to identify Ubisoft Entertainment goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Ubisoft Connect, run the following command from the command line or from PowerShell:
To upgrade Ubisoft Connect, run the following command from the command line or from PowerShell:
To uninstall Ubisoft Connect, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
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://community.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: (additional options)
choco download ubisoft-connect --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade ubisoft-connect -y --source="'INTERNAL REPO 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 ubisoft-connect -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install ubisoft-connect
win_chocolatey:
name: ubisoft-connect
version: '158.0.0.11194'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'ubisoft-connect' do
action :install
source 'INTERNAL REPO URL'
version '158.0.0.11194'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller ubisoft-connect
{
Name = "ubisoft-connect"
Version = "158.0.0.11194"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'ubisoft-connect':
ensure => '158.0.0.11194',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. 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 05 Nov 2024.
Ubisoft Connect is the ecosystem of players services for Ubisoft games across all platforms. It aims at giving the best environment for all players to enjoy their games and connect with each other whatever the device.
Ubisoft Connect is a free service available on all devices. You can access it on your PC, through a mobile app, or even directly from your games. All you need to login is a Ubisoft Account!
Features
One network for all players
Connect with players across all platforms, for all games
Whether you play on PC or console, you'll be part of a global network of Ubisoft players with access to all the same services. Regular updates will provide you with more ways to interact with an ever-growing community.
Find friends on all platforms, see what they're playing, and check their achievements.
Keep your progression on all devices
For our newest releases, all your game progression is saved within Ubisoft Connect, so you won't lose a step if you change consoles or switch to PC.
Endless celebration
Win more
Over 1000 free rewards are available across our back catalogue of games.
On our latest titles, unlock legendary weapons, character outfits, emotes, and consumables just by playing your games. Every time you level up in Ubisoft Connect, you'll earn Units you can spend on unique rewards.
Learn more about our loyalty program here.
20% off the Ubisoft Store
Redeem 100 Units to get 20% off your next purchase in the Ubisoft Store.
Know more and improve
Access your stats at any time and compare with your friends
Keep up to date with your stats, progression and performance in your favorite games.
Compare yourself with your friends, no matter what platform they are playing on.
Get Smart Intel to improve your next session
Before starting your game session, get highlights of your best performances, along with some personalized tips based on your playstyle.
Don't miss any news or events on your favorite games
Check your feed to get all the latest news on your games: upcoming seasons, new challenges, and rewards... We'll give you everything you need to know about the games you love.
$ErrorActionPreference = 'Stop'
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = 'Ubisoft Connect'
fileType = 'exe'
silentArgs = '/S'
validExitCodes = @(0)
}
$uninstalled = $false
[array]$key = Get-UninstallRegistryKey @packageArgs
if ($key.Count -eq 1) {
$key | ForEach-Object {
$packageArgs['file'] = "$($_.UninstallString)"
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 the package maintainer that the following keys were matched:"
$key | ForEach-Object { Write-Warning "- $($_.DisplayName)" }
}
Log in or click on link to see number of positives.
- ubisoft-connect.158.0.0.11194.nupkg (fd49f8592189) - ## / 66
- UbisoftConnectInstaller.exe (135cd58428a6) - ## / 64
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.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Ubisoft Connect 158.0.0.11194 | 1684 | Tuesday, November 5, 2024 | Approved | |
Ubisoft Connect 157.1.0.11142 | 2873 | Tuesday, October 1, 2024 | Approved | |
Ubisoft Connect 156.1.0.11139 | 1533 | Wednesday, September 18, 2024 | Approved | |
Ubisoft Connect 156.0.0.11124 | 1839 | Tuesday, September 3, 2024 | Approved | |
Ubisoft Connect 155.3.0.11121 | 1130 | Tuesday, August 27, 2024 | Approved | |
Ubisoft Connect 155.2.0.11104 | 1998 | Monday, August 5, 2024 | Approved | |
Ubisoft Connect 155.1.0.11102 | 792 | Thursday, August 1, 2024 | Approved | |
Ubisoft Connect 155.0.0.11098 | 1398 | Tuesday, July 23, 2024 | Approved | |
Ubisoft Connect 154.1.0.11095 | 1626 | Thursday, July 4, 2024 | Approved | |
Ubisoft Connect 154.0.0.11086 | 1205 | Wednesday, June 26, 2024 | Approved | |
Ubisoft Connect 153.2.0.11082 | 1395 | Thursday, June 13, 2024 | Approved | |
Ubisoft Connect 153.1.0.11069 | 1515 | Thursday, May 30, 2024 | Approved | |
Ubisoft Connect 153.0.0.11062 | 630 | Tuesday, May 28, 2024 | Approved | |
Ubisoft Connect 152.0.0.11052 | 2341 | Tuesday, April 23, 2024 | Approved | |
Ubisoft Connect 151.2.0.11050 | 1769 | Thursday, April 4, 2024 | Approved | |
Ubisoft Connect 151.1.0.11048 | 1461 | Wednesday, March 27, 2024 | Approved | |
Ubisoft Connect 151.0.0.11045 | 448 | Tuesday, March 26, 2024 | Approved | |
Ubisoft Connect 150.1.0.11037 | 2105 | Thursday, February 29, 2024 | Approved | |
Ubisoft Connect 150.0.0.11034 | 625 | Tuesday, February 27, 2024 | Approved | |
Ubisoft Connect 149.3.0.11030 | 2017 | Monday, February 5, 2024 | Approved | |
Ubisoft Connect 149.1.0.11026 | 1975 | Thursday, January 25, 2024 | Approved | |
Ubisoft Connect 149.0.0.11025 | 643 | Tuesday, January 23, 2024 | Approved | |
Ubisoft Connect 148.3.0.10999 | 2219 | Monday, January 8, 2024 | Approved | |
Ubisoft Connect 148.2.0.10984 | 4036 | Tuesday, December 5, 2023 | Approved | |
Ubisoft Connect 148.1.0.10975 | 839 | Monday, November 27, 2023 | Approved | |
Ubisoft Connect 147.0.0.10965 | 3041 | Tuesday, November 7, 2023 | Approved | |
Ubisoft Connect 146.1.0.10956 | 2592 | Tuesday, October 17, 2023 | Approved | |
Ubisoft Connect 146.0.0.10945 | 2134 | Wednesday, October 4, 2023 | Approved | |
Ubisoft Connect 145.1.0.10933 | 1474 | Monday, September 25, 2023 | Approved | |
Ubisoft Connect 142.1.0.10881 | 14265 | Thursday, June 1, 2023 | Approved | |
Ubisoft Connect 142.0.0.10872 | 1404 | Friday, May 26, 2023 | Approved | |
Ubisoft Connect 141.0.0.10865 | 3622 | Wednesday, May 3, 2023 | Approved | |
Ubisoft Connect 140.0.0.10857 | 3038 | Wednesday, April 12, 2023 | Approved | |
Ubisoft Connect 140.0.0.10852 | 1789 | Tuesday, April 4, 2023 | Approved | |
Ubisoft Connect 139.2.0.10843 | 2087 | Thursday, March 16, 2023 | Approved | |
Ubisoft Connect 139.1.0.10842 | 657 | Wednesday, March 15, 2023 | Approved | |
Ubisoft Connect 139.0.0.10836 | 647 | Tuesday, March 14, 2023 | Approved | |
Ubisoft Connect 138.3.0.10824 | 2224 | Wednesday, February 22, 2023 | Approved | |
Ubisoft Connect 138.2.0.10815 | 1937 | Thursday, February 9, 2023 | Approved | |
Ubisoft Connect 138.1.0.10811 | 506 | Wednesday, February 8, 2023 | Approved | |
Ubisoft Connect 138.0.0.10807 | 1324 | Wednesday, February 1, 2023 | Approved | |
Ubisoft Connect 137.0.0.10799 | 3783 | Wednesday, December 7, 2022 | Approved | |
Ubisoft Connect 136.2.0.10786 | 1964 | Friday, November 25, 2022 | Approved | |
Ubisoft Connect 136.0.0.10773 | 2232 | Wednesday, November 9, 2022 | Approved | |
Ubisoft Connect 135.1.0.10758 | 2646 | Monday, October 17, 2022 | Approved | |
Ubisoft Connect 135.0.0.10753 | 2445 | Wednesday, September 28, 2022 | Approved | |
Ubisoft Connect 134.0.0.10731 | 2421 | Wednesday, September 7, 2022 | Approved | |
Ubisoft Connect 133.1.0.10715 | 1101 | Thursday, September 1, 2022 | Approved | |
Ubisoft Connect 133.0.0.10702 | 3002 | Wednesday, July 27, 2022 | Approved | |
Ubisoft Connect 132.2.0.10690 | 2051 | Monday, July 11, 2022 | Approved | |
Ubisoft Connect 132.1.0.10679 | 2083 | Thursday, June 23, 2022 | Approved | |
Ubisoft Connect 132.0.0.10676 | 2398 | Wednesday, June 1, 2022 | Approved | |
Ubisoft Connect 131.0.0.10667 | 2960 | Wednesday, April 27, 2022 | Approved | |
Ubisoft Connect 130.1.0.10657 | 3097 | Thursday, March 17, 2022 | Approved | |
Ubisoft Connect 130.0.0.10655 | 1946 | Friday, March 4, 2022 | Approved | |
Ubisoft Connect 129.0.0.10647 | 3093 | Wednesday, January 26, 2022 | Approved | |
Ubisoft Connect 128.0.0.10632 | 3867 | Wednesday, December 8, 2021 | Approved | |
Ubisoft Connect 127.4.0.10629 | 1422 | Thursday, December 2, 2021 | Exempted | |
Ubisoft Connect 127.2.0.10625 | 4105 | Monday, November 15, 2021 | Approved | |
Ubisoft Connect 127.1.0.10616 | 2309 | Thursday, October 28, 2021 | Approved | |
Ubisoft Connect 127.0.0.10614 | 917 | Wednesday, October 27, 2021 | Approved | |
Ubisoft Connect 126.1.0.10597 | 2145 | Monday, October 11, 2021 | Approved | |
Ubisoft Connect 126.0.0.10593 | 2040 | Wednesday, September 29, 2021 | Approved | |
Ubisoft Connect 125.1.0.10585 | 2388 | Monday, September 6, 2021 | Approved | |
Ubisoft Connect 125.0.0.10582 | 1248 | Wednesday, September 1, 2021 | Approved | |
Ubisoft Connect 124.3.0.10571 | 1936 | Monday, August 16, 2021 | Approved | |
Ubisoft Connect 124.2.0.10565 | 1973 | Friday, July 30, 2021 | Approved | |
Ubisoft Connect 124.1.0.10563 | 159 | Thursday, July 29, 2021 | Approved | |
Ubisoft Connect 124.0.0.10560 | 426 | Wednesday, July 28, 2021 | Approved | |
Ubisoft Connect 123.2.0.10554 | 1545 | Tuesday, July 20, 2021 | Approved | |
Ubisoft Connect 123.1.0.10526 | 2034 | Thursday, July 1, 2021 | Approved | |
Ubisoft Connect 123.0.0.10520 | 704 | Tuesday, June 29, 2021 | Approved | |
Ubisoft Connect 122.2.0.10507 | 1568 | Monday, June 21, 2021 | Approved | |
Ubisoft Connect 122.2.0.10488 | 1937 | Wednesday, June 9, 2021 | Approved | |
Ubisoft Connect 122.1.0.10474 | 1449 | Wednesday, June 2, 2021 | Approved | |
Ubisoft Connect 121.0.0.10451 | 2975 | Monday, April 26, 2021 | Approved | |
Ubisoft Connect 120.0.0.10418 | 1955 | Wednesday, April 14, 2021 | Approved | |
Uplay 119.0.0.10382 | 2647 | Wednesday, February 24, 2021 | Approved |
© Ubisoft Entertainment. All Rights Reserved.
This package has no dependencies.
Ground Rules:
- This discussion is only about Ubisoft Connect and the Ubisoft Connect 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 Ubisoft Connect, 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.