Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

34,042

Downloads of v 2.17.4.90:

294

Last Update:

22 Apr 2019

Package Maintainer(s):

Software Author(s):

  • KC Softwares

Tags:

dumo freeware driver updater admin

DUMo

This is not the latest version of DUMo available.

  • 1
  • 2
  • 3

2.17.4.90 | Updated: 22 Apr 2019

Downloads:

34,042

Downloads of v 2.17.4.90:

294

Maintainer(s):

Software Author(s):

  • KC Softwares

DUMo 2.17.4.90

This is not the latest version of DUMo available.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install DUMo, run the following command from the command line or from PowerShell:

>

To upgrade DUMo, run the following command from the command line or from PowerShell:

>

To uninstall DUMo, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

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

  • 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

3. Copy Your Script

choco upgrade dumo -y --source="'INTERNAL REPO URL'" --version="'2.17.4.90'" [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 dumo -y --source="'INTERNAL REPO URL'" --version="'2.17.4.90'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install dumo
  win_chocolatey:
    name: dumo
    version: '2.17.4.90'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'dumo' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '2.17.4.90'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller dumo
{
    Name     = "dumo"
    Version  = "2.17.4.90"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'dumo':
  ensure   => '2.17.4.90',
  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.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

Package Approved

This package was approved as a trusted package on 22 Apr 2019.

Description

DUMo (Drivers Update Monitor) keeps your PC up-to-date & safe by using the most recent version of required hardware drivers!

Features

  • User-friendly driver updater
  • Automatic detection of installed hardware
  • Detects required drivers according to your version of Microsoft Windows
  • More compatibility and less false positive than others Drivers Monitors (according to users feedback ;-)
  • Internationalization support.

Notes

  • This package installs the Free version. A supported version with enhanced performance is available for purchase.
  • After the package is uninstall, a web page is shown. This is not being handled in the package.

tools\chocolateyInstall.ps1
$ErrorActionPreference = 'Stop'

$toolsPath = Split-Path -Parent $MyInvocation.MyCommand.Definition

$packageArgs = @{
  packageName    = $env:ChocolateyPackageName
  fileType       = 'exe'
  url            = 'https://kcsoftwares.com/files/dumo_lite.exe'
  softwareName   = 'KC Softwares DUMo'
  checksum       = 'EA2F17E776EE6034C78F6E6F738F95561E9C402728AC2EEC6456746D9D073327A9AB68712FCD76526CADAD79FDEA7CD74A4E0D34AB8DCE4E444DB2AD9221D9AB'
  checksumType   = 'sha512'
  silentArgs     = "/VERYSILENT /NORESTART /SUPPRESSMSGBOXES /SP- /LOG=`"$($env:TEMP)\$($env:chocolateyPackageName).$($env:chocolateyPackageVersion).InnoInstall.log`""
  validExitCodes = @(0)
}

Install-ChocolateyPackage @packageArgs

$ahkExec = Get-Command "AutoHotKey" | Select-Object -ExpandProperty Path

Write-Host "Closing DUmo..."
Start-ChocolateyProcessAsAdmin -exeToRun $ahkExec -statements "$toolsPath\install.ahk" -elevated:$false
tools\install.ahk
#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
SetTitleMatchMode, RegEx

; We know the window will pop up, so we'll wait until it does
WinWait, DUMo.*,,60
WinWait, Checking...,,60
ControlClick, Stop, Checking...
ControlGet, StopCtrl, Visible,, Stop, Checking...
if (StopCtrl)
  ControlSend, Stop, {Enter}, Checking...

WinWaitClose, Checking...,,60
WinClose, DUMo.*

WinWait, Thank you !,, 60

ControlFocus, TJvImgBtn4, Thank you !
ControlClick, TJvImgBtn4, Thank you !
ControlGet, CloseCtrl, Visible,, TJvImgBtn4, Thank you !
if (CloseCtrl)
  ControlSend, TJvImgBtn4, {Enter}, Thank you !

WinWaitClose, DUMo.*,,60

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
DUMo 2.25.1.121 214 Monday, October 10, 2022 Approved
DUMo 2.25.0.120 360 Wednesday, April 27, 2022 Approved
DUMo 2.24.1.119 369 Thursday, December 2, 2021 Approved
DUMo 2.24.0.118 396 Monday, July 19, 2021 Approved
DUMo 2.23.5.115 453 Monday, April 12, 2021 Approved
DUMo 2.23.4.114 351 Monday, March 15, 2021 Approved
DUMo 2.23.3.113 272 Monday, February 15, 2021 Approved
DUMo 2.23.2.112 298 Friday, January 22, 2021 Approved
DUMo 2.23.1.111 269 Sunday, December 20, 2020 Approved
DUMo 2.23.0.107 308 Sunday, October 4, 2020 Approved
DUMo 2.22.3.106 280 Friday, August 28, 2020 Approved
DUMo 2.22.2.105 464 Saturday, May 16, 2020 Approved
DUMo 2.22.1.104 337 Tuesday, April 14, 2020 Approved
DUMo 2.22.0.103 288 Saturday, March 28, 2020 Approved
DUMo 2.21.0.102 236 Wednesday, March 18, 2020 Approved
DUMo 2.20.2.101 432 Sunday, January 12, 2020 Approved
DUMo 2.20.1.100 202 Saturday, January 11, 2020 Approved
DUMo 2.20.0.99 307 Saturday, December 21, 2019 Approved
DUMo 2.19.0.98 340 Monday, November 11, 2019 Approved
DUMo 2.18.2.97 261 Sunday, October 13, 2019 Approved
DUMo 2.18.1.96 323 Wednesday, August 28, 2019 Approved
DUMo 2.18.0.95 224 Friday, August 9, 2019 Approved
DUMo 2.17.5.9101 320 Thursday, June 20, 2019 Approved
DUMo 2.17.5.91 247 Sunday, June 2, 2019 Approved
DUMo 2.17.4.90 294 Monday, April 22, 2019 Approved
DUMo 2.17.3.88 285 Sunday, March 10, 2019 Approved
DUMo 2.17.2.86 323 Saturday, February 9, 2019 Approved
DUMo 2.17.1.85 388 Saturday, January 5, 2019 Approved
DUMo 2.16.1.81 482 Tuesday, September 11, 2018 Approved
DUMo 2.15.3.78 390 Thursday, August 16, 2018 Approved
DUMo 2.15.2.76 484 Tuesday, May 15, 2018 Approved
DUMo 2.15.0.74 436 Sunday, April 8, 2018 Approved
DUMo 2.14.1.72 411 Sunday, March 18, 2018 Approved
DUMo 2.14.0.70 434 Wednesday, February 7, 2018 Approved
DUMo 2.13.1.69 378 Tuesday, January 30, 2018 Approved
DUMo 2.13.0.67 420 Thursday, January 4, 2018 Approved
DUMo 2.13.0.66 335 Thursday, January 4, 2018 Approved
DUMo 2.12.0.65 496 Tuesday, December 26, 2017 Approved
DUMo 2.11.1.64 633 Friday, October 27, 2017 Approved
DUMo 2.11.0.63 835 Monday, September 18, 2017 Approved
DUMo 2.10.3.62 470 Sunday, September 3, 2017 Approved
DUMo 2.10.2.61 480 Tuesday, August 8, 2017 Approved
DUMo 2.10.1.59 357 Saturday, July 29, 2017 Approved
DUMo 2.10.0.58 434 Saturday, July 15, 2017 Approved
DUMo 2.9.2.57 430 Monday, July 10, 2017 Approved
DUMo 2.9.1.56 522 Friday, April 28, 2017 Approved
DUMo 2.9.0.55 458 Wednesday, April 5, 2017 Approved
DUMo 2.8.4.54 488 Thursday, February 16, 2017 Approved
DUMo 2.8.3.52 448 Tuesday, January 24, 2017 Approved
DUMo 2.8.1.50 486 Tuesday, November 29, 2016 Approved
DUMo 2.8.0.49 398 Tuesday, November 8, 2016 Approved
DUMo 2.7.3.48 399 Thursday, October 27, 2016 Approved
DUMo 2.7.2.46 426 Thursday, October 20, 2016 Approved
DUMo 2.6.0.39 536 Monday, August 8, 2016 Approved
DUMo 2.5.9.38 408 Wednesday, July 20, 2016 Approved
DUMo 2.5.7.36 469 Monday, June 6, 2016 Approved
DUMo 2.5.6.35 423 Monday, May 16, 2016 Approved
DUMo 2.5.5.34 382 Thursday, May 5, 2016 Approved
DUMo 2.5.4.33 420 Saturday, April 30, 2016 Approved
DUMo 2.5.3.32 447 Sunday, April 24, 2016 Approved
DUMo 2.5.2.31 416 Monday, April 11, 2016 Approved
DUMo 2.5.1.30 428 Saturday, March 26, 2016 Approved
DUMo 2.5.0.28 426 Thursday, March 17, 2016 Approved
DUMo 2.4.0.27 535 Monday, February 1, 2016 Approved
DUMo 2.3.4.26 412 Monday, January 4, 2016 Approved
DUMo 2.3.3.25 442 Tuesday, December 22, 2015 Approved
DUMo 2.3.2.24 393 Saturday, December 5, 2015 Approved
DUMo 2.3.1.22 332 Saturday, October 31, 2015 Approved
DUMo 2.3.0.21 357 Sunday, October 18, 2015 Approved
DUMo 2.2.0.20 367 Saturday, October 10, 2015 Approved
DUMo 2.0.5.18 357 Sunday, July 19, 2015 Approved
DUMo 2.0.4.17 396 Saturday, July 4, 2015 Approved
DUMo 2.0.2.16 456 Sunday, June 21, 2015 Approved
DUMo 2.0.2.15 421 Thursday, June 11, 2015 Approved
DUMo 2.0.1.12 470 Tuesday, June 2, 2015 Approved
DUMo 2.0.0.11 427 Sunday, May 31, 2015 Approved
DUMo 1.4.0.6 739 Saturday, October 25, 2014 Approved
DUMo 1.3.0.5 551 Saturday, July 5, 2014 Approved
DUMo 1.3.0.4 482 Monday, April 28, 2014 Approved
DUMo 1.2.0.3 433 Wednesday, April 9, 2014 Approved
DUMo 1.1.0.2 450 Thursday, March 27, 2014 Approved
Discussion for the DUMo Package

Ground Rules:

  • This discussion is only about DUMo and the DUMo 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 DUMo, 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.
comments powered by Disqus