Downloads:
5,283
Downloads of v 2.00:
103
Last Update:
24 Jan 2023
Package Maintainer(s):
Software Author(s):
- Nir Sofer
Tags:
multiple monitors freeware cli- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
MultiMonitorTool
This is not the latest version of MultiMonitorTool available.
- 1
- 2
- 3
2.00 | Updated: 24 Jan 2023
- 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:
5,283
Downloads of v 2.00:
103
Maintainer(s):
Software Author(s):
- Nir Sofer
MultiMonitorTool 2.00
This is not the latest version of MultiMonitorTool available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Nir Sofer. The inclusion of Nir Sofer trademark(s), if any, upon this webpage is solely to identify Nir Sofer 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 MultiMonitorTool, run the following command from the command line or from PowerShell:
To upgrade MultiMonitorTool, run the following command from the command line or from PowerShell:
To uninstall MultiMonitorTool, 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 multimonitortool --internalize --version=2.00 --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 multimonitortool -y --source="'INTERNAL REPO URL'" --version="'2.00'" [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 multimonitortool -y --source="'INTERNAL REPO URL'" --version="'2.00'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install multimonitortool
win_chocolatey:
name: multimonitortool
version: '2.00'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'multimonitortool' do
action :install
source 'INTERNAL REPO URL'
version '2.00'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller multimonitortool
{
Name = "multimonitortool"
Version = "2.00"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'multimonitortool':
ensure => '2.00',
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 by moderator virtualex on 15 Feb 2023.
choco://multimonitortool
To use choco:// protocol URLs, install (unofficial) choco:// Protocol support
MultiMonitorTool
MultiMonitorTool is a small tool that allows you to do some actions related to working with multiple monitors.
With MultiMonitorTool, you can disable/enable monitors, set the primary monitor, save and load the configuration of all monitors, and move windows from one monitor to another. You can do these actions from the user interface or from command-line, without displaying user interface.
MultiMonitorTool also provides a preview window, which allows you to watch a preview of every monitor on your system.
Package Parameters
/NoShim
- Opt out of creating a GUI shim./NoDesktopShortcut
- Opt out of creating a Desktop shortcut./NoProgramsShortcut
- Opt out of creating a Programs shortcut in your Start Menu./Start
- Automatically start MultiMonitorTool after installation completes.
Package Notes
For future upgrade operations, consider opting into Chocolatey's useRememberedArgumentsForUpgrades
feature to avoid having to pass the same arguments with each upgrade:
choco feature enable --name="'useRememberedArgumentsForUpgrades'"
$ErrorActionPreference = 'Stop'
$softwareName = 'MultiMonitorTool'
$process = Get-Process -Name $softwareName -ErrorAction SilentlyContinue
if ($process)
{
Write-Warning "$softwareName is currently running, stopping it to prevent upgrade/uninstall from failing..."
Stop-Process -InputObject $process -ErrorAction SilentlyContinue
Start-Sleep -Seconds 3
$process = Get-Process -Name $softwareName -ErrorAction SilentlyContinue
if ($process)
{
Write-Warning "$softwareName is still running despite stop request, force stopping it..."
Stop-Process -InputObject $process -Force -ErrorAction SilentlyContinue
}
Write-Warning "If upgrading, $softwareName may need to be manually restarted upon completion"
}
else
{
Write-Debug "No running $softwareName process instances were found"
}
$ErrorActionPreference = 'Stop'
$programsDirectory = [Environment]::GetFolderPath([Environment+SpecialFolder]::Programs)
$desktopDirectory = [Environment]::GetFolderPath([Environment+SpecialFolder]::DesktopDirectory)
$linkName = 'MultiMonitorTool.lnk'
$programsShortcutFilePath = Join-Path -Path $programsDirectory -ChildPath $linkName
$desktopShortcutFilePath = Join-Path -Path $desktopDirectory -ChildPath $linkName
if (Test-Path -Path $programsShortcutFilePath)
{
Remove-Item -Path $programsShortcutFilePath -Force
}
if (Test-Path -Path $desktopShortcutFilePath)
{
Remove-Item -Path $desktopShortcutFilePath -Force
}
md5: FC414ECC38769A57F81F6D9FC57B4160 | sha1: BED2ED10CD67A00D76E97F8F495A5DFCDA20D8EC | sha256: D0C371440F1203FEECF5422F72A5C07B088C4B0AA53B552CC02BFAFBC95D795B | sha512: 51CDDE7059E50F23DE9039AB30C5CFCEF215AF96C41EE19567D9349C5A9026B3AB87C919CA7FE30D5D987E1308ABB56C57094694477CE43059E53850F954760A
md5: 0028FE0F5C9663C5BA94E3DF4C1E575C | sha1: 03CE3938F7EEB0411D148B8E2A760240D44E3609 | sha256: A7C24EAB537C49305F0A9ED6DBB0770F20CA8AAF480D27A6A3F405B9DFB93C78 | sha512: 14419AB104740A8A4E9FBE102BD1EDCE060E502670A5DC3090F636D3E87E1E0AD2DEA457A08E28A0D27B26631966A378AA65C994517B06920DED461916ABF924
From: https://www.nirsoft.net/utils/multi_monitor_tool.html
License
This utility is released as freeware.
You are allowed to freely distribute this utility via floppy disk, CD-ROM,
Internet, or in any other way, as long as you don't charge anything for this and you don't
sell it or distribute it as a part of commercial product.
If you distribute this utility, you must include all files in
the distribution package, without any modification !
Disclaimer
The software is provided "AS IS" without any warranty, either expressed or implied,
including, but not limited to, the implied warranties of merchantability and fitness
for a particular purpose. The author will not be liable for any special, incidental,
consequential or indirect damages due to loss of data or any other reason.
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
The packaged ZIP archive is sourced via the project's page on Nir Sofer's website.
The project's page is located at the following URL:
https://www.nirsoft.net/utils/multi_monitor_tool.html
For convenience, the packaged archives were downloaded via the following URLs:
https://www.nirsoft.net/utils/multimonitortool.zip
https://www.nirsoft.net/utils/multimonitortool-x64.zip
Nir Sofer also publishes official checksums for the packaged archives at the following URL:
https://www.nirsoft.net/hash_check/?software=multimonitortool
Note that the download URLs are not versioned, and that the checksums page only contains information
for the latest available version. Therefore, these URLs will only be a valid reference source if
the latest available version and packaged version are one and the same. A newly released version
should be expected to invalidate a checksum verification for an older version when using these URLs.
As a workaround, this package's creation process includes the creation of historical snapshots via
the Internet Archive's Wayback Machine to create a permanent backup source.
These snapshots can be accessed at the following URLs:
Download (32-bit): https://web.archive.org/web/20230124022629/https://www.nirsoft.net/utils/multimonitortool.zip
Download (64-bit): https://web.archive.org/web/20230124022650/https://www.nirsoft.net/utils/multimonitortool-x64.zip
Checksums: https://web.archive.org/web/20230124022555/https://www.nirsoft.net/hash_check/?software=multimonitortool
For convenience, the following checksums were published at the time of this package's creation:
multimonitortool.zip
MD5: fc414ecc38769a57f81f6d9fc57b4160
SHA1: bed2ed10cd67a00d76e97f8f495a5dfcda20d8ec
SHA256: d0c371440f1203feecf5422f72a5c07b088c4b0aa53b552cc02bfafbc95d795b
SHA512: 51cdde7059e50f23de9039ab30c5cfcef215af96c41ee19567d9349c5a9026b3ab87c919ca7fe30d5d987e1308abb56c57094694477ce43059e53850f954760a
multimonitortool-x64.zip
MD5: 0028fe0f5c9663c5ba94e3df4c1e575c
SHA1: 03ce3938f7eeb0411d148b8e2a760240d44e3609
SHA256: a7c24eab537c49305f0a9ed6dbb0770f20ca8aaf480d27a6a3f405b9dfb93c78
SHA512: 14419ab104740a8a4e9fbe102bd1edce060e502670a5dc3090f636d3e87e1e0ad2dea457a08e28a0d27b26631966a378aa65c994517b06920ded461916abf924
Note that the MD5 and SHA1 hash algorithms are no longer considered secure by modern standards.
For tamper protection, it's recommended to validate against either a SHA256 or SHA512 hash instead.
The following PowerShell block will calculate and print a hash for each supported algorithm:
$filePaths = @('multimonitortool.zip', 'multimonitortool-x64.zip')
$hashAlgorithms = @('MD5', 'SHA1', 'SHA256', 'SHA512')
foreach ($filePath in $filePaths)
{
foreach ($hashAlgorithm in $hashAlgorithms)
{
(Get-FileHash -Path $filePath -Algorithm $hashAlgorithm).Hash.ToLower()
}
}
This block should be executed against independently downloaded archives, as well as the copies
distributed with the package. All of the calculated hash values should match the published checksums.
Matching hash values should confirm that the published checksums are valid, and that no corruption or
tampering has occurred during this package's generation process.
Log in or click on link to see number of positives.
- multimonitortool.2.00.nupkg (c294638c3369) - ## / 63
- multimonitortool-x64.zip (a7c24eab537c) - ## / 65
- multimonitortool.zip (d0c371440f12) - ## / 65
- MultiMonitorTool.exe (4a0225414641) - ## / 70
- MultiMonitorTool.exe (2e370cd2597d) - ## / 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 |
---|---|---|---|---|
MultiMonitorTool 2.15.0 | 43 | Monday, November 4, 2024 | Approved | |
MultiMonitorTool 2.11.0 | 189 | Friday, September 13, 2024 | Approved | |
MultiMonitorTool 2.10 | 782 | Tuesday, March 14, 2023 | Approved | |
MultiMonitorTool 2.05 | 121 | Tuesday, February 21, 2023 | Approved | |
MultiMonitorTool 2.00 | 103 | Tuesday, January 24, 2023 | Approved | |
MultiMonitorTool 1.96 | 267 | Tuesday, April 5, 2022 | Approved | |
MultiMonitorTool 1.95 | 1302 | Tuesday, February 5, 2019 | Approved | |
MultiMonitorTool 1.92 | 291 | Wednesday, November 21, 2018 | Approved | |
MultiMonitorTool 1.91 | 419 | Wednesday, February 21, 2018 | Approved | |
MultiMonitorTool 1.90 | 468 | Tuesday, August 22, 2017 | Approved | |
MultiMonitorTool 1.86 | 459 | Tuesday, November 8, 2016 | Approved | |
MultiMonitorTool 1.85 | 409 | Thursday, October 20, 2016 | Approved | |
MultiMonitorTool 1.83 | 430 | Thursday, April 2, 2015 | Approved |
Copyright (c) 2012-2023 Nir Sofer
This package has no dependencies.
Ground Rules:
- This discussion is only about MultiMonitorTool and the MultiMonitorTool 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 MultiMonitorTool, 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.