Chocolatey Community Coffee Break

Join the Chocolatey Team on our regular monthly stream where we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

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

Announcing Chocolatey Central Management 0.10.0

Livestream from
Thursday, 06 October 2022

We recently released our largest update to Chocolatey Central Management so far. Join Gary and Steph to find out more about Chocolatey Central Management and the new features and fixes we've added to this release.

Watch On-Demand
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
Chocolatey Product Spotlight: Chocolatey 1.2.0 and Chocolatey Licensed Extension 5.0.0

Livestream from
Thursday, 03 November 2022

Join Paul and Gary for this months Chocolatey product livestream where we look at the latest release of Chocolatey 1.2.0, Chocolatey Licensed Extension 5.0.0 and shine a spotlight on the new hook scripts functionality. This opens up so many possibilities for Chocolatey CLI users!

Watch On-Demand
Chocolatey Coding Livestream

Livestream from
Tuesday, 29 November 2022

Join Josh as he adds the ability to manage Chocolatey GUI config and features with the Chocolatey Ansible Collection.

Watch On-Demand
Introduction into Chocolatey with Veeam

Webinar from
Tuesday, 13 December 2022

Join Gary, Paul, and Maurice as they introduce and demonstrate how to use Chocolatey! Questions will be answered live in an Ask Me Anything format.

Watch On-Demand

Downloads:

25,378

Downloads of v 8.88:

441

Last Update:

13 Jul 2022

Package Maintainer(s):

Software Author(s):

  • Nenad Hrg

Tags:

dontsleep.install computer sleep control

Don't Sleep (Install)

This is not the latest version of Don't Sleep (Install) available.

  • 1
  • 2
  • 3

8.88 | Updated: 13 Jul 2022

Downloads:

25,378

Downloads of v 8.88:

441

Maintainer(s):

Software Author(s):

  • Nenad Hrg

Don't Sleep (Install) 8.88

This is not the latest version of Don't Sleep (Install) available.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged as a Note:

At least one file within this package has greater than 0 detections, but less than 5

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Don't Sleep (Install), run the following command from the command line or from PowerShell:

>

To upgrade Don't Sleep (Install), run the following command from the command line or from PowerShell:

>

To uninstall Don't Sleep (Install), 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 dontsleep.install -y --source="'INTERNAL REPO URL'" --version="'8.88'" [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 dontsleep.install -y --source="'INTERNAL REPO URL'" --version="'8.88'" 
$exitCode = $LASTEXITCODE

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

Exit $exitCode

- name: Install dontsleep.install
  win_chocolatey:
    name: dontsleep.install
    version: '8.88'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'dontsleep.install' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '8.88'
end

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


cChocoPackageInstaller dontsleep.install
{
    Name     = "dontsleep.install"
    Version  = "8.88"
    Source   = "INTERNAL REPO URL"
}

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


package { 'dontsleep.install':
  ensure   => '8.88',
  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

This package is likely a meta/virtual (*) or an installer (*.install) or portable (*.portable) application package.

  • Meta/virtual (*) - has a dependency on the *.install or the *.portable package - it is provided for discoverability and for other packages to take a dependency on.
  • Portable (*.portable/*.commandline (deprecated naming convention)/*.tool (deprecated naming convention)) - usually zips or archives that require no administrative access to install.
  • Install (*.install/*.app (deprecated naming convention)) - uses native installers, usually requires administrative access to install.

Learn more about chocolatey's distinction of installed versus portable apps and/or learn about this kind of package.

Package Approved

This package was approved as a trusted package on 13 Jul 2022.

Description

Especially when old Programs run on Windows-10 or Windows 8.1 / 7. Here's more aggressive power-saving features with new rules.

But not only that, it also prevents login off the computer, and the deactivation of the monitor or activation of the screen saver.

Of course you can also manually disable all the options and then activate again, but with Don't Sleep one can save now many hand moves and also save time! And it's easier than ever.

Apart from the fact Don't Sleep has a timer that allows time control unblock, or shutdown the computer for a specified time.

Key Features in Don't Sleep

  • Don't Sleep don't change the power saving options on the system
  • From-Tray feature: power off, reboot, log off, restart ...
  • Schedule computer to shut down at a certain time
  • Set the timer to prevent standby in windows!
  • Please Sleep Feature in Don't Sleep!
  • Start parameter in Don't Sleep!

Other features and specifications:

  • Portable Windows Program!
  • Does not burden the CPU
  • Extreme tiny size
  • Easy to use
  • Multilingual

For what! Prevent system shutdown, Standby, Hibernate, Turn Off and Restart?

The reason for the development of the program is that some programs with a longer runtime have not considered this new power-saving features on the windows OS.

You can also manually customize the window power saving features or disable all the options and then reactivate them again, but you can save the time when use Don't Sleep. Don't Sleep can also serve as a general protection if you have started a background service or application and want to prevent turn off of the computer by itself, or other persons ergo accounts.

Don't Sleep has a timer that allows you to disable blocking with a timed manner, or to shut down the computer at a certain time. This is a practical function that prevents the PC to running unnecessarily, since not every PC is equipped with a quality power supply that consumes 1Watt in standby mode.

How does the program work?

Depending on the setting, Don't Sleep reports to the operating system that it has very important tasks to do if the screen saver is to be activated or the monitor is to be deactivated. Likewise, it notifies the system that it has the highest shutdown priority to prevent other programs from receiving the shutdown command before Don't

screenshot


tools\DontSleep_x64.zip
md5: 88CFB3B5DC9FCB0B4AEBF912CD5D58BD | sha1: 69A2C6F334E9E7D8C554DA024E83CDCDD25A4300 | sha256: 2226E0C2A9A3605553EE168289E167FFDCC876D611352B50FE12289514FFAD1B | sha512: 3251B0013C10C51E5D83B8F77790FE0D3DA9DC127D524A627D4163BFBB49D86E6DB98844021073D9319914169F9B01FBEB4CAE5A31EE8B996195577D4AF1623B
tools\DontSleep.zip
md5: 030A2E84C5960CCA0BDE2808A1D4AFAC | sha1: B4B0CAF37E5E825FA0CA611D9C73AA43DA970620 | sha256: B17958E2EECC25C5C1C16814A0A286C1D68A27549217ACD1A0A78F34F4314784 | sha512: AE28E3E21B223706080E6CE6B681D567ADEC6AB7A6154EC9661EF521D6D63D45E2610E299E8392AF0AEE75482109612770048FA5D4E24828C39C57E6EC1FEE85
tools\chocolateyuninstall.ps1
$ErrorActionPreference = 'Stop'
$programs = [environment]::GetFolderPath([environment+specialfolder]::Programs)

$shortcutFilePath = Join-Path $programs "Dont Sleep.lnk"
if(Test-Path $shortcutFilePath) { Remove-Item $shortcutFilePath }
tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop';
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$packageArgs = @{
  packageName   = $env:ChocolateyPackageName
  destination   = "$toolsDir"  
  file          = "$toolsDir\DontSleep.zip"
  file64        = "$toolsDir\DontSleep_x64.zip"
}

Get-ChocolateyUnzip @packageArgs

#Install start menu shortcuts
$programs = [environment]::GetFolderPath([environment+specialfolder]::Programs)
if (Get-OSArchitectureWidth -Compare "32") { $exe_file = "DontSleep.exe" } else { $exe_file = "DontSleep_x64.exe" }

$shortcutFilePath = Join-Path $programs "Dont Sleep.lnk"
$targetPath = Join-Path $toolsDir $exe_file
Install-ChocolateyShortcut -RunAsAdmin -shortcutFilePath $shortcutFilePath -targetPath $targetPath
legal\VERIFICATION.txt
VERIFICATION
 
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
 
Package can be verified like this:
 
1. Download:
 
   x32: https://www.softwareok.com/Download/DontSleep.zip
   x64: https://www.softwareok.com/Download/DontSleep_x64.zip
  
2. You can use one of the following methods to obtain the SHA256 checksum:
   - Use powershell function 'Get-FileHash'
   - Use Chocolatey utility 'checksum.exe'
 
   checksum type: sha256
   checksum32: B17958E2EECC25C5C1C16814A0A286C1D68A27549217ACD1A0A78F34F4314784
   checksum64: 2226E0C2A9A3605553EE168289E167FFDCC876D611352B50FE12289514FFAD1B
 
File 'LICENSE.txt' is obtained from:
   http://www.softwareok.com/?seite=Microsoft/DontSleep/Eula
legal\LICENSE.txt

From: http://www.softwareok.com/?seite=Microsoft/DontSleep/Eula

LICENSE

End User License Agreement
==========================

LICENSE HRG NENAD (SOFTWAREOK.COM)
THIS SOFTWARE IS FREEWARE


This software is the property of Hrg Nenad (softwareok.com) and its suppliers and is protected by copyright law and international treaty provisions.

You may distribute an unlimited number of unmodified , copies of the software to anyone you wish !

You are not allowed to sell this software!

You may not decompile, reverse engineer or disassemble this software and any executable part of this software.

THE SOFTWARE PROVIDED TO YOU AS IS WITHOUT WARRANTY OF ANY KIND, ANY SPECIAL,INCIDENTAL,EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. YOU ASSUME THE ENTIRE RISK AS TO THE ACCURACY AND THE USE OF THIS SOFTWARE.

HRG NENAD (SOFTWAREOK.COM) SHALL NOT BE LIABLE FOR ANY DAMAGES WHATSOEVER ARISING OUT OF THE USE OF OR INABILITY TO USE OF THIS SOFTWARE, EVEN IF HRG NENAD (SOFTWAREOK.COM) HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

NON-ACCEPTANCE OR VIOLATION OF ANY OF THE ABOVE TERMS IMMEDIATELY AND UNCONDITIONALLY WILL TERMINATE YOUR LICENSE.

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
Don't Sleep (Install) 9.44 262 Sunday, September 10, 2023 Approved
Don't Sleep (Install) 9.41 407 Sunday, July 30, 2023 Approved
Don't Sleep (Install) 9.31 697 Friday, April 14, 2023 Approved
Don't Sleep (Install) 9.29 514 Thursday, February 23, 2023 Approved
Don't Sleep (Install) 9.21 407 Saturday, January 21, 2023 Approved
Don't Sleep (Install) 9.17 485 Thursday, December 8, 2022 Approved
Don't Sleep (Install) 9.11 626 Friday, September 30, 2022 Approved
Don't Sleep (Install) 9.09 109 Wednesday, September 28, 2022 Approved
Don't Sleep (Install) 9.01 464 Monday, September 5, 2022 Approved
Don't Sleep (Install) 8.91 463 Thursday, August 11, 2022 Approved
Don't Sleep (Install) 8.88 441 Wednesday, July 13, 2022 Approved
Don't Sleep (Install) 8.81 486 Monday, June 6, 2022 Approved
Don't Sleep (Install) 8.77 557 Saturday, April 23, 2022 Approved
Don't Sleep (Install) 8.73 328 Monday, April 4, 2022 Approved
Don't Sleep (Install) 8.71 477 Monday, March 21, 2022 Approved
Don't Sleep (Install) 8.61 568 Saturday, February 5, 2022 Approved
Don't Sleep (Install) 8.51 800 Monday, November 1, 2021 Approved
Don't Sleep (Install) 8.48 589 Wednesday, August 25, 2021 Approved
Don't Sleep (Install) 8.44 555 Tuesday, June 29, 2021 Approved
Don't Sleep (Install) 8.32 335 Thursday, June 17, 2021 Approved
Don't Sleep (Install) 8.28 441 Saturday, May 29, 2021 Approved
Don't Sleep (Install) 8.18 425 Sunday, May 9, 2021 Approved
Don't Sleep (Install) 8.11 415 Wednesday, April 14, 2021 Approved
Don't Sleep (Install) 8.08 476 Friday, March 12, 2021 Approved
Don't Sleep (Install) 8.02 211 Monday, March 8, 2021 Approved
Don't Sleep (Install) 8.01 132 Sunday, March 7, 2021 Approved
Don't Sleep (Install) 7.91 474 Thursday, February 11, 2021 Approved
Don't Sleep (Install) 7.89 467 Wednesday, January 27, 2021 Approved
Don't Sleep (Install) 7.88 108 Wednesday, January 27, 2021 Approved
Don't Sleep (Install) 7.81 147 Monday, January 25, 2021 Approved
Don't Sleep (Install) 7.77 448 Sunday, January 10, 2021 Approved
Don't Sleep (Install) 7.71 454 Friday, December 18, 2020 Approved
Don't Sleep (Install) 7.67 334 Tuesday, December 8, 2020 Approved
Don't Sleep (Install) 7.55 301 Wednesday, December 2, 2020 Approved
Don't Sleep (Install) 7.51 380 Friday, November 20, 2020 Approved
Don't Sleep (Install) 7.44 241 Sunday, November 15, 2020 Approved
Don't Sleep (Install) 7.33 464 Sunday, October 18, 2020 Approved
Don't Sleep (Install) 7.31 228 Thursday, October 15, 2020 Approved
Don't Sleep (Install) 7.22 420 Tuesday, September 29, 2020 Approved
Don't Sleep (Install) 7.21 272 Sunday, September 27, 2020 Approved
Don't Sleep (Install) 7.17 223 Friday, September 25, 2020 Approved
Don't Sleep (Install) 7.13 382 Monday, September 7, 2020 Approved
Don't Sleep (Install) 7.01 474 Wednesday, August 5, 2020 Approved
Don't Sleep (Install) 6.81 269 Friday, July 31, 2020 Approved
Don't Sleep (Install) 6.77 392 Wednesday, July 1, 2020 Approved
Don't Sleep (Install) 6.71 418 Sunday, May 24, 2020 Approved
Don't Sleep (Install) 6.65 254 Sunday, May 17, 2020 Approved
Don't Sleep (Install) 6.51 300 Sunday, May 3, 2020 Approved
Don't Sleep (Install) 6.41 328 Tuesday, April 14, 2020 Approved
Don't Sleep (Install) 6.36 330 Tuesday, March 17, 2020 Approved
Don't Sleep (Install) 6.31 341 Wednesday, February 19, 2020 Approved
Don't Sleep (Install) 6.22 397 Friday, December 13, 2019 Approved
Don't Sleep (Install) 6.21 214 Tuesday, December 3, 2019 Approved
Don't Sleep (Install) 6.11 233 Wednesday, November 13, 2019 Approved
Don't Sleep (Install) 6.06.1 195 Wednesday, November 6, 2019 Approved
Don't Sleep (Install) 6.02 227 Saturday, November 2, 2019 Approved
Don't Sleep (Install) 6.01.6 170 Thursday, October 31, 2019 Approved
Don't Sleep (Install) 6.01 144 Thursday, October 31, 2019 Approved
Don't Sleep (Install) 5.71 243 Monday, October 7, 2019 Approved
Don't Sleep (Install) 5.66 239 Saturday, September 14, 2019 Approved
Don't Sleep (Install) 5.61 287 Friday, August 23, 2019 Approved
Don't Sleep (Install) 5.57 244 Friday, August 9, 2019 Approved
Don't Sleep (Install) 5.55 240 Friday, July 26, 2019 Approved
Don't Sleep (Install) 5.51 276 Monday, July 8, 2019 Approved
Don't Sleep (Install) 5.45 223 Thursday, June 20, 2019 Approved
Don't Sleep (Install) 5.44 156 Wednesday, June 19, 2019 Approved
Don't Sleep (Install) 5.41 182 Monday, June 17, 2019 Approved
Don't Sleep (Install) 5.33 233 Thursday, June 13, 2019 Approved
Don't Sleep (Install) 5.25.0.20190612 179 Wednesday, June 12, 2019 Approved
Don't Sleep (Install) 5.25 162 Tuesday, June 11, 2019 Approved
Don't Sleep (Install) 5.21 184 Friday, May 31, 2019 Approved
Don't Sleep (Install) 5.16.0.20190508 178 Wednesday, May 8, 2019 Approved
Don't Sleep (Install) 5.16 182 Wednesday, May 1, 2019 Approved
Don't Sleep (Install) 5.15 222 Sunday, April 7, 2019 Approved

This package has no dependencies.

Discussion for the Don't Sleep (Install) Package

Ground Rules:

  • This discussion is only about Don't Sleep (Install) and the Don't Sleep (Install) 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 Don't Sleep (Install), 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