Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...
- Passing
- Failing
- Pending
- Unknown / Exempted

Downloads:
29,739
Downloads of v 2.10.7.5:
428
Last Update:
19 Aug 2016
Package Maintainer(s):
Software Author(s):
- Werner van Deventer (DevEnterprise Software)
Tags:
directory monitor watcher audit admin- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

Directory Monitor
This is not the latest version of Directory Monitor available.
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
29,739
Downloads of v 2.10.7.5:
428
Maintainer(s):
Software Author(s):
- Werner van Deventer (DevEnterprise Software)
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
Directory Monitor 2.10.7.5
This is not the latest version of Directory Monitor available.
All Checks are Passing
2 Passing Test
To install Directory Monitor, run the following command from the command line or from PowerShell:
To upgrade Directory Monitor, run the following command from the command line or from PowerShell:
To uninstall Directory Monitor, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
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://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
choco download directorymonitor --internalize --version=2.10.7.5 --source=https://chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade directorymonitor -y --source="'STEP 3 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 directorymonitor -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure directorymonitor installed
win_chocolatey:
name: directorymonitor
state: present
version: 2.10.7.5
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'directorymonitor' do
action :install
version '2.10.7.5'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: directorymonitor,
Version: 2.10.7.5,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller directorymonitor
{
Name = 'directorymonitor'
Ensure = 'Present'
Version = '2.10.7.5'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'directorymonitor':
provider => 'chocolatey',
ensure => '2.10.7.5',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install directorymonitor version="2.10.7.5" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. 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...
This package was approved as a trusted package on 22 Aug 2016.
You can use Directory Monitor for the surveillance of certain directories and/or network shares and will notify you of file changes/access, deletions, modifications, and new files in real-time.
$packageArgs = @{
packageName = 'directorymonitor'
fileType = 'exe'
url = 'http://download.directorymonitor.com/files/DirectoryMonitor2_21075_Setup.exe'
url64bit = 'http://download.directorymonitor.com/files/DirectoryMonitor2_21075_Setup.exe'
silentArgs = '/sp- /silent /norestart'
validExitCodes = @(0)
softwareName = 'Directory Monitor'
checksum = '8b535d569adea78022d60de6300a8c4e431baa1e8c796e5a25e39a9a3f2cf248'
checksumType = 'sha256'
checksum64 = '8b535d569adea78022d60de6300a8c4e431baa1e8c796e5a25e39a9a3f2cf248'
checksumType64 = 'sha256'
}
Install-ChocolateyPackage @packageArgs
Log in or click on link to see number of positives.
- directorymonitor.2.10.7.5.nupkg (823acab8c814) - ## / 56
- DirectoryMonitor2_21075_Setup.exe (8b535d569ade) - ## / 55
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.
Version | Downloads | Last Updated | Status |
---|---|---|---|
Directory Monitor 2.13.5.5 | 104 | Monday, January 4, 2021 | Approved |
Directory Monitor 2.13.5.4 | 85 | Monday, November 30, 2020 | Approved |
Directory Monitor 2.13.5.3 | 187 | Friday, August 7, 2020 | Approved |
Directory Monitor 2.13.5.2 | 179 | Sunday, June 14, 2020 | Approved |
Directory Monitor 2.13.5.1 | 84 | Friday, May 29, 2020 | Approved |
Directory Monitor 2.13.4.0 | 308 | Sunday, January 12, 2020 | Approved |
Directory Monitor 2.13.3.0 | 125 | Monday, December 30, 2019 | Approved |
Directory Monitor 2.13.1.1 | 177 | Monday, October 21, 2019 | Approved |
Directory Monitor 2.13.1.0 | 204 | Friday, August 30, 2019 | Approved |
Directory Monitor 2.13.0.4 | 210 | Friday, June 28, 2019 | Approved |
Directory Monitor 2.13.0.3 | 251 | Thursday, April 11, 2019 | Approved |
Directory Monitor 2.13.0.0 | 227 | Friday, February 15, 2019 | Approved |
Directory Monitor 2.12.0.5 | 350 | Tuesday, November 7, 2017 | Approved |
Directory Monitor 2.12.0.4 | 296 | Thursday, October 19, 2017 | Approved |
Directory Monitor 2.12.0.3 | 276 | Monday, October 16, 2017 | Approved |
Directory Monitor 2.12.0.2 | 337 | Saturday, September 23, 2017 | Approved |
Directory Monitor 2.12.0.1 | 282 | Tuesday, September 19, 2017 | Approved |
Directory Monitor 2.12.0.0 | 284 | Sunday, September 17, 2017 | Approved |
Directory Monitor 2.11.0.0 | 420 | Tuesday, May 2, 2017 | Approved |
Directory Monitor 2.10.9.0 | 398 | Thursday, March 30, 2017 | Approved |
Directory Monitor 2.10.8.9 | 323 | Monday, March 27, 2017 | Approved |
Directory Monitor 2.10.8.8 | 289 | Saturday, March 25, 2017 | Approved |
Directory Monitor 2.10.8.7 | 395 | Wednesday, February 22, 2017 | Approved |
Directory Monitor 2.10.8.6 | 352 | Thursday, February 9, 2017 | Approved |
Directory Monitor 2.10.8.5 | 289 | Saturday, February 4, 2017 | Approved |
Directory Monitor 2.10.8.4 | 294 | Wednesday, February 1, 2017 | Approved |
Directory Monitor 2.10.8.3 | 323 | Thursday, December 22, 2016 | Approved |
Directory Monitor 2.10.8.2 | 419 | Saturday, November 12, 2016 | Approved |
Directory Monitor 2.10.8.1 | 337 | Tuesday, October 25, 2016 | Approved |
Directory Monitor 2.10.8.0 | 295 | Monday, October 17, 2016 | Approved |
Directory Monitor 2.10.7.6 | 393 | Monday, September 12, 2016 | Approved |
Directory Monitor 2.10.7.5 | 428 | Friday, August 19, 2016 | Approved |
Directory Monitor 2.10.7.4 | 308 | Tuesday, August 16, 2016 | Approved |
Directory Monitor 2.10.7.3 | 309 | Friday, August 12, 2016 | Approved |
Directory Monitor 2.10.7.2 | 308 | Friday, August 12, 2016 | Approved |
DevEnterprise Software
- Fix duplicate directory menu option (#Ticket 1050).
- Avoid FIPS policy which makes the Growl plugin fail to load.
This package has no dependencies.
Ground Rules:
- This discussion is only about Directory Monitor and the Directory Monitor 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 Directory Monitor, 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.