Downloads:
1,202
Downloads of v 2022.261.26064-git257ad284:
53
Last Update:
18 Sep 2022
Package Maintainer(s):
Software Author(s):
- Redpoint Games
Tags:
uefs unrealengine docker- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
UEFS
This is a prerelease version of UEFS.
- 1
- 2
- 3
2022.261.26064-git257ad284 | Updated: 18 Sep 2022
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
1,202
Downloads of v 2022.261.26064-git257ad284:
53
Maintainer(s):
Software Author(s):
- Redpoint Games
UEFS 2022.261.26064-git257ad284
This is a prerelease version of UEFS.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Redpoint Games. The inclusion of Redpoint Games trademark(s), if any, upon this webpage is solely to identify Redpoint Games 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
Deployment Method: Individual Install, Upgrade, & Uninstall
To install UEFS, run the following command from the command line or from PowerShell:
To upgrade UEFS, run the following command from the command line or from PowerShell:
To uninstall UEFS, 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 uefs --internalize --version=2022.261.26064-git257ad284 --pre --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 uefs -y --source="'INTERNAL REPO URL'" --version="'2022.261.26064-git257ad284'" --prerelease [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 uefs -y --source="'INTERNAL REPO URL'" --version="'2022.261.26064-git257ad284'" --prerelease
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install uefs
win_chocolatey:
name: uefs
version: '2022.261.26064-git257ad284'
source: INTERNAL REPO URL
state: present
allow_prerelease: yes
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'uefs' do
action :install
source 'INTERNAL REPO URL'
version '2022.261.26064-git257ad284'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller uefs
{
Name = "uefs"
Version = "2022.261.26064-git257ad284"
Source = "INTERNAL REPO URL"
chocoParams = "--prerelease"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'uefs':
ensure => '2022.261.26064-git257ad284',
install_options => ['--prerelease'],
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.
This package is exempt from moderation. While it is likely safe for you, there is more risk involved.
UEFS allows you to package Unreal Engine installations into a single file and then project them into the Windows filesystem so you don't have to spend time waiting for it to be extracted to disk. It also allows you to mount packages as volumes within Docker containers.
$ErrorActionPreference = 'Stop';
# Uninstall the old service.
if ($null -ne (Get-Service -Name "UEFS Docker Volume Plugin" -ErrorAction SilentlyContinue)) {
Stop-Service -Name "UEFS Docker Volume Plugin"
sc.exe delete "UEFS Docker Volume Plugin"
}
# Stop the service if it's running. The install script will start it again after upgrades.
if ($null -ne (Get-Service -Name "UEFS Service" -ErrorAction SilentlyContinue)) {
Stop-Service -Name "UEFS Service"
}
$ErrorActionPreference = 'Stop';
# Uninstall the old service.
if ($null -ne (Get-Service -Name "UEFS Docker Volume Plugin" -ErrorAction SilentlyContinue)) {
Stop-Service -Name "UEFS Docker Volume Plugin"
sc.exe delete "UEFS Docker Volume Plugin"
}
# Uninstall the service.
if ($null -ne (Get-Service -Name "UEFS Service" -ErrorAction SilentlyContinue)) {
Stop-Service -Name "UEFS Service"
sc.exe delete "UEFS Service"
}
# Remove the shim.
Uninstall-BinFile -Name "uefs" -Path "$env:ProgramFiles\UEFS\uefs.exe"
# Uninstall UEFS. Uninstall-ChocolateyZip doesn't seem to work properly for packages
# installed with Get-ChocolateyUnzip.
if (Test-Path "$env:ProgramFiles\UEFS") {
Remove-Item -Force -Recurse "$env:ProgramFiles\UEFS"
}
From: Redpoint Games
LICENSE
MIT License
Copyright (c) June Rhodes. All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE
md5: CCDA55793A5BE9898EB2C9BC3F627B2C | sha1: F3EF71C1583738666D8C1B6FABA2EA63F328B2AD | sha256: F2DA4D98A44957098ACDDC48F1FE75376D3B4D56AF2210B6C1960FDC60120BDC | sha512: 49053B2E4E2609B7CE04DBE85B1AF9371D9F9C7CA17481AF7B5F1ECEE88ADD301EEDEFF410E5C5B33935417EF153C1A3BCEE2540F346134A860E6E37AD4A6233
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
I am the author of this software. This software is automatically published from CI/CD.
Log in or click on link to see number of positives.
- Newtonsoft.Json.dll (72cf291d4bab) - ## / 74
- Microsoft.Extensions.Configuration.Abstractions.dll (e4eb5eb7e28a) - ## / 69
- Microsoft.Extensions.Configuration.Binder.dll (c0d2a11b73af) - ## / 69
- Microsoft.Extensions.Configuration.CommandLine.dll (db2a0fbcbd1d) - ## / 70
- Microsoft.Extensions.Configuration.dll (73cc9885face) - ## / 70
- Microsoft.Extensions.Configuration.FileExtensions.dll (9f67d13f6ff5) - ## / 69
- Microsoft.Extensions.Configuration.Json.dll (476f3fcb02d6) - ## / 70
- Microsoft.Extensions.FileProviders.Abstractions.dll (ecfcef11c42f) - ## / 70
- Microsoft.Extensions.FileProviders.Physical.dll (b17ba3bc6319) - ## / 70
- Microsoft.Extensions.FileSystemGlobbing.dll (be2897386d1f) - ## / 70
- Microsoft.Extensions.Primitives.dll (8ce9a85927ec) - ## / 69
- Microsoft.Extensions.DependencyInjection.Abstractions.dll (9ccd830351aa) - ## / 70
- Microsoft.Extensions.DependencyInjection.dll (2aa8182b5356) - ## / 70
- Microsoft.Extensions.Logging.Abstractions.dll (d575c9d1543c) - ## / 70
- Microsoft.Extensions.Logging.dll (183650081b55) - ## / 69
- Microsoft.Extensions.Options.dll (786112cb2f66) - ## / 69
- CommandLine.dll (8a55501cd1a1) - ## / 72
- DiscUtils.Core.dll (f69c5091f7b4) - ## / 68
- DiscUtils.Ntfs.dll (b296dcbbe950) - ## / 71
- DiscUtils.Streams.dll (9de71c017c45) - ## / 69
- DiscUtils.Vhd.dll (22e4fe318da4) - ## / 71
- Docker.DotNet.dll (6307158416af) - ## / 70
- Microsoft.Extensions.Configuration.EnvironmentVariables.dll (94fb00fe869f) - ## / 70
- Microsoft.Extensions.Configuration.UserSecrets.dll (cdb02893f9a9) - ## / 69
- Microsoft.Extensions.Hosting.Abstractions.dll (df9eb42421a8) - ## / 69
- Microsoft.Extensions.Hosting.dll (327b4c2e65a9) - ## / 70
- Microsoft.Extensions.Hosting.WindowsServices.dll (67a60d18bbf3) - ## / 68
- Microsoft.Extensions.Logging.Configuration.dll (aa17d34ef4c4) - ## / 70
- Microsoft.Extensions.Logging.Console.dll (1a1537feab4b) - ## / 70
- Microsoft.Extensions.Logging.Debug.dll (2c9c3c004fb6) - ## / 70
- Microsoft.Extensions.Logging.EventLog.dll (7ec93bb691f9) - ## / 70
- Microsoft.Extensions.Logging.EventSource.dll (6242df355da0) - ## / 70
- Microsoft.Extensions.Options.ConfigurationExtensions.dll (a4244cbd8e90) - ## / 70
- System.Diagnostics.EventLog.dll (24a02d97c2fc) - ## / 69
- System.ServiceProcess.ServiceController.dll (c17e78e246fb) - ## / 69
- uefs.exe (3580a647ecad) - ## / 71
- System.Diagnostics.EventLog.dll (644bb3a1afbe) - ## / 69
- System.Diagnostics.EventLog.Messages.dll (6444dfa03609) - ## / 70
- System.ServiceProcess.ServiceController.dll (b5c339cc240e) - ## / 70
- JetBrains.Annotations.dll (772a71b05bd7) - ## / 65
- Microsoft.IdentityModel.Logging.dll (b5fa1de62aeb) - ## / 70
- Microsoft.IdentityModel.Tokens.dll (472af38176a3) - ## / 69
- Microsoft.Win32.SystemEvents.dll (ca495bf6c86b) - ## / 70
- System.Drawing.Common.dll (98d07e6b1e7d) - ## / 70
- System.IdentityModel.Tokens.Jwt.dll (a31d0d0cd320) - ## / 71
- System.Security.Permissions.dll (62068c0f6bff) - ## / 74
- System.Windows.Extensions.dll (810e8767d02d) - ## / 70
- System.Drawing.Common.dll (89ea595ccb1f) - ## / 70
- Microsoft.Win32.SystemEvents.dll (142cce4ed8ac) - ## / 71
- System.Drawing.Common.dll (4d3001697df5) - ## / 74
- System.Windows.Extensions.dll (e72863f75a5a) - ## / 58
- uefs.2022.261.26064-git257ad284.nupkg (984a1037cf97) - ## / 61
- uefs.zip (f2da4d98a449) - ## / 60
- CredentialManagement.dll (ae23efe98817) - ## / 69
- Docker.Registry.DotNet.dll (4e8fdde72e25) - ## / 69
- uefs-daemon-service.dll (08a5441f6978) - ## / 70
- uefs-daemon-service.exe (b3bf8ce93e46) - ## / 71
- uefs-daemon.dll (4b1ceb37de4e) - ## / 70
- uefs-daemon.exe (714af62c81ad) - ## / 70
- uefs.dll (666412e38074) - ## / 70
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 |
---|---|---|---|---|
UEFS 2023.22.46451-git45f6e4dd | 106 | Sunday, January 22, 2023 | Exempted | |
UEFS 2022.334.40866-git5ac4f1cd | 55 | Thursday, December 15, 2022 | Exempted | |
UEFS 2022.325.38487-git7640bcf2 | 78 | Monday, November 21, 2022 | Exempted | |
UEFS 2022.286.32168 | 152 | Wednesday, October 19, 2022 | Approved | |
UEFS 2022.286.32168-gitd92a0da3 | 59 | Thursday, October 13, 2022 | Exempted | |
UEFS 2022.263.28473-git8941edae | 57 | Tuesday, September 20, 2022 | Exempted | |
UEFS 2022.262.27110-git483e2b26 | 55 | Monday, September 19, 2022 | Exempted | |
UEFS 2022.261.26064-git257ad284 | 53 | Sunday, September 18, 2022 | Exempted | |
UEFS 2022.255.24983-gitbe4abdc6 | 56 | Monday, September 12, 2022 | Exempted | |
UEFS 2022.253.24926-git064991be | 55 | Saturday, September 10, 2022 | Exempted | |
UEFS 2022.252.24878-gitf3ca5815 | 55 | Friday, September 9, 2022 | Exempted | |
UEFS 2022.252.24717-git2db0199a | 56 | Friday, September 9, 2022 | Exempted | |
UEFS 2022.252.24657-gitc71cc9d9 | 66 | Thursday, September 8, 2022 | Exempted | |
UEFS 2022.252.24599-git16e2392b | 120 | Thursday, September 8, 2022 | Exempted | |
UEFS 2022.251.24239-gitd658b270 | 65 | Wednesday, September 7, 2022 | Exempted | |
UEFS 2022.9.7-git8fd8e176 | 60 | Tuesday, September 6, 2022 | Exempted | |
UEFS 2022.9.6-git1a051892 | 54 | Tuesday, September 6, 2022 | Exempted |
2022 June Rhodes
The changelog is available at: https://docs.redpoint.games/uefs/docs/changelog
-
- dotnet-6.0-runtime (≥ 6.0.8)
- chocolatey-core.extension (≥ 1.1.0)
Ground Rules:
- This discussion is only about UEFS and the UEFS 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 UEFS, 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.