Downloads:
108,235
Downloads of v 8.14.2.200:
24,830
Last Update:
03 Oct 2024
Package Maintainer(s):
Software Author(s):
- NoMachine
Tags:
nomachine remote control online admin- Software Specific:
- Software Site
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
NoMachine
- 1
- 2
- 3
8.14.2.200 | Updated: 03 Oct 2024
- Software Specific:
- Software Site
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
108,235
Downloads of v 8.14.2.200:
24,830
Maintainer(s):
Software Author(s):
- NoMachine
NoMachine 8.14.2.200
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by NoMachine. The inclusion of NoMachine trademark(s), if any, upon this webpage is solely to identify NoMachine 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 NoMachine, run the following command from the command line or from PowerShell:
To upgrade NoMachine, run the following command from the command line or from PowerShell:
To uninstall NoMachine, 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 nomachine --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 nomachine -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 nomachine -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 nomachine
win_chocolatey:
name: nomachine
version: '8.14.2.200'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'nomachine' do
action :install
source 'INTERNAL REPO URL'
version '8.14.2.200'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller nomachine
{
Name = "nomachine"
Version = "8.14.2.200"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'nomachine':
ensure => '8.14.2.200',
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 was approved as a trusted package on 20 Dec 2024.
NoMachine is a remote-control tool, available for multiple platforms (Windows,
Linux, Android, ...) which is easy to install and use. This version, that exists
alongside paid Enterprise edition, is free to use.
Features
Discover NoMachine features on official website : https://www.nomachine.com/what-s-new-in-nomachine
> Travel from your desktop to any NoMachine-enabled computer at the speed of light.
> Thanks to our NX technology, NoMachine is the fastest and highest quality remote
> desktop you have ever tried. In just a few clicks you can reach any computer
> in the world and start working on it as if it was right in front of you.
From NoMachine https://www.nomachine.com/
Update from 8.2.4.9- versions on 64 bits environment
From 8.2.4.10, chocolatey packaging choose nomachine 64 bits on 64 bits environment, but x86 to x64
upgrade by nomachine installer does not work.
You need to uninstall nomachine (also check windows add/remove applications) before reinstalling
it with chocolatey.
x86 and x86_64 (from 8.4.2.100)
From 8.4.2.100 installation uses appropriate packaging based on architecture and --x86
option.
Package behavior (from 6.6.8.501)
Chocolatey package automatically enables Print Spooler service as it is needed
for a successful NoMachine installation
(see https://twitter.com/LaurentAlmeras/status/1126175028993769482).
$ErrorActionPreference = 'Stop'
$packageName = 'nomachine'
$softwareName = 'NoMachine*'
$installerType = 'EXE'
$silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
$validExitCodes = @(0)
$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $softwareName
if ($key.Count -eq 1) {
$key | % {
$file = "$($_.UninstallString)"
Uninstall-ChocolateyPackage -PackageName $packageName `
-FileType $installerType `
-SilentArgs "$silentArgs" `
-ValidExitCodes $validExitCodes `
-File "$file"
}
} 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 | % {Write-Warning "- $_.DisplayName"}
}
Log in or click on link to see number of positives.
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 |
---|---|---|---|---|
NoMachine 8.14.2.200 | 24830 | Thursday, October 3, 2024 | Approved | |
NoMachine 8.13.1.100 | 3793 | Thursday, July 25, 2024 | Approved | |
NoMachine 8.12.13.100 | 1107 | Sunday, July 21, 2024 | Approved | |
NoMachine 8.12.12.400 | 3087 | Wednesday, July 17, 2024 | Approved | |
NoMachine 8.11.3.300 | 7180 | Wednesday, February 7, 2024 | Approved | |
NoMachine 8.10.1.100 | 5116 | Friday, November 10, 2023 | Approved | |
NoMachine 8.9.1.100 | 2828 | Wednesday, October 4, 2023 | Approved | |
NoMachine 8.8.1.100 | 4921 | Wednesday, July 26, 2023 | Approved | |
NoMachine 8.7.1.600 | 531 | Saturday, July 22, 2023 | Approved | |
NoMachine 8.6.1.100 | 2912 | Wednesday, June 28, 2023 | Approved | |
NoMachine 8.5.3.100 | 7823 | Saturday, May 13, 2023 | Approved | |
NoMachine 8.4.2.900 | 2216 | Thursday, February 16, 2023 | Approved | |
NoMachine 8.4.2.100 | 51 | Friday, March 24, 2023 | Approved | |
NoMachine 8.3.1.100 | 1454 | Sunday, January 22, 2023 | Approved | |
NoMachine 8.2.3.400 | 1755 | Wednesday, November 9, 2022 | Approved | |
NoMachine 8.1.2.100 | 1397 | Monday, October 3, 2022 | Approved | |
NoMachine 7.10.2.800 | 2591 | Friday, July 8, 2022 | Approved | |
NoMachine 7.10.1.100 | 1201 | Saturday, June 25, 2022 | Approved | |
NoMachine 7.9.2.100 | 2504 | Monday, March 28, 2022 | Approved | |
NoMachine 7.8.2.100 | 1826 | Saturday, February 5, 2022 | Approved | |
NoMachine 7.7.4.100 | 2520 | Saturday, October 30, 2021 | Approved | |
NoMachine 7.6.2.400 | 3026 | Thursday, May 27, 2021 | Approved | |
NoMachine 7.5.2.100 | 553 | Thursday, May 20, 2021 | Approved | |
NoMachine 7.4.1.100 | 913 | Monday, April 26, 2021 | Approved | |
NoMachine 7.3.2.100 | 1809 | Thursday, March 25, 2021 | Approved | |
NoMachine 7.2.3.600 | 854 | Saturday, March 6, 2021 | Approved | |
NoMachine 7.1.3.100 | 908 | Wednesday, February 3, 2021 | Approved | |
NoMachine 7.0.211.400 | 995 | Tuesday, December 22, 2020 | Approved | |
NoMachine 7.0.209.500 | 330 | Saturday, December 19, 2020 | Approved | |
NoMachine 7.0.208.400 | 229 | Friday, December 18, 2020 | Approved | |
NoMachine 6.12.3.700 | 975 | Monday, November 9, 2020 | Approved | |
NoMachine 6.11.2.100 | 2581 | Wednesday, June 17, 2020 | Approved | |
NoMachine 6.10.12.100 | 827 | Sunday, May 17, 2020 | Approved | |
NoMachine 6.9.2.100 | 2125 | Friday, December 20, 2019 | Approved | |
NoMachine 6.8.1.100 | 879 | Thursday, October 3, 2019 | Approved | |
NoMachine 6.7.6.700 | 1225 | Friday, May 24, 2019 | Approved | |
NoMachine 6.6.8.501 | 349 | Friday, May 10, 2019 | Approved | |
NoMachine 6.4.6.500 | 2352 | Saturday, December 29, 2018 | Approved | |
NoMachine 6.3.6.100 | 760 | Saturday, October 13, 2018 | Approved | |
NoMachine 6.2.4.100 | 813 | Saturday, June 16, 2018 | Approved | |
NoMachine 6.1.6.100 | 536 | Wednesday, May 2, 2018 | Approved | |
NoMachine 6.0.80.100 | 685 | Friday, February 23, 2018 | Approved | |
NoMachine 6.0.66.200 | 674 | Thursday, December 28, 2017 | Approved | |
NoMachine 5.3.12.500 | 670 | Thursday, September 28, 2017 | Approved | |
NoMachine 5.3.10.300 | 494 | Saturday, August 12, 2017 | Approved | |
NoMachine 5.3.9.400 | 451 | Saturday, July 22, 2017 | Approved | |
NoMachine 5.2.21.100 | 524 | Thursday, June 1, 2017 | Approved |
Copyright 2002-2024, NoMachine S.à r.l.
This package has no dependencies.
Ground Rules:
- This discussion is only about NoMachine and the NoMachine 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 NoMachine, 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.