Skip to content

Instantly share code, notes, and snippets.

@corbob
Last active August 26, 2022 20:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save corbob/110756b357445cbaa815dbefe7e7c69b to your computer and use it in GitHub Desktop.
Save corbob/110756b357445cbaa815dbefe7e7c69b to your computer and use it in GitHub Desktop.
Delay Chocolatey output
write-host Hello World
Start-Sleep -Seconds 30
Write-Warning Warning
Start-Sleep -Seconds 30
Write-Error 'Bad Things'
Start-Sleep -Seconds 30
Write-Host Goodbye World
Start-Sleep -Seconds 30
Write-Warning Warning
Start-Sleep -Seconds 30
Write-Error 'Bad Things'
Start-Sleep -Seconds 30
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>delayed</id>
<version>1.1.1</version>
<title>delayed (Install)</title>
<authors>__REPLACE_AUTHORS_OF_SOFTWARE_COMMA_SEPARATED__</authors>
<projectUrl>https://_Software_Location_REMOVE_OR_FILL_OUT_</projectUrl>
<tags>delayed SPACE_SEPARATED</tags>
<summary>__REPLACE__</summary>
<description>__REPLACE__MarkDown_Okay </description>
</metadata>
<files>
<file src="*.ps1" target="tools" />
</files>
</package>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment