Skip to content

Instantly share code, notes, and snippets.

View evoelker's full-sized avatar

Eryk evoelker

  • In a rabbit hole.
View GitHub Profile
@evoelker
evoelker / Start-Progress.ps1
Last active February 17, 2022 14:55 — forked from ctigeek/Start-Sleep.ps1
Powershell sleep function, with progress bar.
function Sleep-Progress($seconds)
{
<#
.SYNOPSIS
Function to Start-Sleep with a progress bar
.DESCRIPTION
Runs the 'Start-Sleep' command using the with a progress bar. Time is passed to the function in seconds as an argument.
.NOTES