Downloads:
1,317
Downloads of v 1.6.4:
46
Last Update:
17 Sep 2024
Package Maintainer(s):
Software Author(s):
- CCP
Tags:
eve-online gaming launcher- Software Specific:
- Software Site
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
EVE Online Launcher
- 1
- 2
- 3
1.6.4 | Updated: 17 Sep 2024
- Software Specific:
- Software Site
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
1,317
Downloads of v 1.6.4:
46
Maintainer(s):
Software Author(s):
- CCP
EVE Online Launcher 1.6.4
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by CCP. The inclusion of CCP trademark(s), if any, upon this webpage is solely to identify CCP 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 EVE Online Launcher, run the following command from the command line or from PowerShell:
To upgrade EVE Online Launcher, run the following command from the command line or from PowerShell:
To uninstall EVE Online Launcher, 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 eve-online --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 eve-online -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 eve-online -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 eve-online
win_chocolatey:
name: eve-online
version: '1.6.4'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'eve-online' do
action :install
source 'INTERNAL REPO URL'
version '1.6.4'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller eve-online
{
Name = "eve-online"
Version = "1.6.4"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'eve-online':
ensure => '1.6.4',
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...
There are versions of this package awaiting moderation . See the Version History section below.
This package was approved as a trusted package on 22 Oct 2024.
NOTE:
CCP has updated their launcher and is deprecating their original launcher. This package has been updated to use their new launcher, but because of the differences in the versions of the original launcher and this new launcher, you may have to uninstall this package if it's already installed under one of those old versions and install one of the new versions for the package to upgrade properly again.
THE #1 SPACE MMO
YOUR GALACTIC ADVENTURE AWAITS
WHAT IS EVE ONLINE?
EVE Online is a community-driven spaceship MMORPG where players can play free, choosing their own path from countless options.
Experience space exploration, immense PvP and PvE battles and a thriving player economy in an ever-expanding sandbox.
Participate in many in-game professions and activities, including war, politics, piracy, trading, and exploration, across 7,000 star systems with hundreds of thousands of other players.
EVE ACADEMY
THE ULTIMATE BEGINNER'S GUIDE
Whether you seek glory in the grand wars of Capsuleer nations, amass wealth through trade and industry, earn fortune and reputation in service of New Eden's powerful factions, or simply explore the universe in search of treasures and ancient secrets, you have total freedom to forge your path.
THE EVER-EVOLVING COMMUNITY OF EVE
NEW EDEN'S HEART AND SOUL
Since May of 2003, EVE Online has continually brought capsuleers across the world together in a universe of meaningful interaction, where cooperation and friendship are the keys to both fun and fortune - fueling a community unlike any other in the wide world of online gaming. This also extends beyond the screen, with official events such as EVE Fanfest in Reykjavik, Iceland and player gatherings around the world bringing players and developers alike together to reminisce and party, with old comrades and enemies alike, and forge new connections with fellow space friends!
The EVE community also plays a vital role in the game's development through the Council of Stellar Management (CSM), a democratically elected player council that meets with developers and provides essential feedback on features and content for the world of EVE. We also welcome EVE content creators of all kinds to join the Partnership Program to be rewarded for their passion and creativity.
Additionally, the EVE Community Team and other developers engage with players daily on Discord and regularly stream on the CCP TV twitch channel - and the EVE Help Center is at your service 24/7 in every supported language. Embark into New Eden and find your place in the incomparable community of EVE Online. We'll see you in space, capsuleer!
Fly Safe o7
$ErrorActionPreference = 'Stop';
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = 'eve-online'
fileType = 'EXE'
silentArgs = '--uninstall -s'
validExitCodes = @(0, 3010, 1605, 1614, 1641)
}
[array]$key = Get-UninstallRegistryKey -SoftwareName $packageArgs['softwareName']
if ($key.Count -eq 1) {
$key | ForEach-Object {
$file = $_.UninstallString -Split " -" | Select-Object -First 1
$packageArgs['file'] = $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)" }
}
Log in or click on link to see number of positives.
- eve-online.1.6.4.nupkg (cf908d3d3266) - ## / 65
- eve-online-latest+Setup.exe (fbdf905c2d07) - ## / 71
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 |
---|---|---|---|---|
[Deprecated] EVE Online Launcher 3.2.3.1 | 8 | Thursday, November 14, 2024 | Waiting on dependencies | |
EVE Online Launcher 1.6.4 | 46 | Tuesday, September 17, 2024 | Approved | |
EVE Online Launcher 1.6.3 | 18 | Wednesday, September 11, 2024 | Approved | |
EVE Online Launcher 1.6.2 | 46 | Tuesday, July 23, 2024 | Approved | |
EVE Online Launcher 1.6.1 | 23 | Friday, July 5, 2024 | Approved | |
EVE Online Launcher 1.4.4 | 25 | Friday, June 28, 2024 | Approved | |
EVE Online Launcher 1.3.6 | 27 | Tuesday, May 28, 2024 | Approved | |
EVE Online Launcher 1.3.5 | 28 | Wednesday, May 1, 2024 | Approved | |
EVE Online Launcher 1.3.4 | 31 | Tuesday, April 16, 2024 | Approved | |
EVE Online Launcher 1.3.3 | 30 | Monday, April 1, 2024 | Approved | |
EVE Online Launcher 1.3.2 | 28 | Wednesday, March 27, 2024 | Approved | |
EVE Online Launcher 1.3.1 | 27 | Thursday, March 21, 2024 | Approved | |
EVE Online Launcher 1.3.0 | 43 | Wednesday, March 20, 2024 | Approved | |
EVE Online Launcher 1.2.11 | 29 | Wednesday, February 28, 2024 | Approved | |
EVE Online Launcher 1.2.10 | 38 | Thursday, February 22, 2024 | Approved | |
EVE Online Launcher 1.2.9 | 24 | Wednesday, February 21, 2024 | Approved | |
EVE Online Launcher 1.2.8 | 31 | Saturday, February 17, 2024 | Approved | |
EVE Online Launcher 1.2.7 | 31 | Sunday, February 11, 2024 | Approved | |
EVE Online Launcher 1.2.6 | 32 | Wednesday, February 7, 2024 | Approved | |
EVE Online Launcher 1.2.4 | 33 | Tuesday, January 30, 2024 | Approved | |
EVE Online Launcher 1.2.1 | 40 | Thursday, January 4, 2024 | Approved | |
EVE Online Launcher 1.2.0 | 35 | Wednesday, December 20, 2023 | Approved | |
EVE Online Launcher 1.1.0 | 30 | Tuesday, December 12, 2023 | Approved | |
EVE Online Launcher 1.0.2 | 39 | Thursday, December 7, 2023 | Approved | |
EVE Online Launcher 0.4.10 | 38 | Wednesday, November 29, 2023 | Approved | |
EVE Online Launcher 0.4.9 | 31 | Saturday, November 18, 2023 | Approved | |
EVE Online Launcher 0.4.8 | 29 | Tuesday, November 14, 2023 | Approved | |
EVE Online Launcher 0.4.7 | 35 | Monday, November 13, 2023 | Approved | |
EVE Online Launcher 0.4.6 | 36 | Thursday, November 9, 2023 | Approved | |
EVE Online Launcher 0.4.5 | 38 | Thursday, November 9, 2023 | Approved | |
EVE Online Launcher 0.4.4 | 43 | Thursday, November 2, 2023 | Approved | |
EVE Online Launcher 0.4.3 | 36 | Thursday, November 2, 2023 | Approved | |
EVE Online Launcher 0.4.2 | 36 | Tuesday, October 24, 2023 | Approved |
© 1997-2022 CCP
This package has no dependencies.
Ground Rules:
- This discussion is only about EVE Online Launcher and the EVE Online Launcher 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 EVE Online Launcher, 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.