├── .github └── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ ├── feature-request.yml │ └── other-request.yml ├── Changelog.md ├── LICENSE.txt ├── PSCountdownTasks.txt ├── PSTimers.psd1 ├── PSTimers.psm1 ├── README.md ├── Tests └── PSTimers.tests.ps1 ├── archive-changelog.md ├── docs ├── Export-MyTimer.md ├── Get-HistoryRuntime.md ├── Get-MyTimer.md ├── Import-MyTimer.md ├── Remove-MyTimer.md ├── Reset-MyTimer.md ├── Restart-MyTimer.md ├── Resume-MyTimer.md ├── Set-MyTimer.md ├── Start-MyTimer.md ├── Start-PSCountdown.md ├── Start-PSCountdownTimer.md ├── Start-PSCountdownTitle.md ├── Start-PSTimer.md ├── Stop-MyTimer.md ├── Stop-PSCountdownTimer.md ├── Suspend-MyTimer.md └── about_PSTimers.md ├── en-US ├── PSTimers-help.xml ├── PSTimers.psd1 └── about_PSTimers.help.txt ├── formats └── mytimer.format.ps1xml ├── functions ├── Export-MyTimer.ps1 ├── Get-HistoryRuntime.ps1 ├── Get-MyTimer.ps1 ├── Import-MyTimer.ps1 ├── Pause-MyTimer.ps1 ├── Remove-MyTimer.ps1 ├── Reset-MyTimer.ps1 ├── Restart-MyTimer.ps1 ├── Resume-MyTimer.ps1 ├── Set-MyTimer.ps1 ├── Start-MyTimer.ps1 ├── Start-PSCountdown.ps1 ├── Start-PSCountdownTimer.ps1 ├── Start-PSCountdownTitle.ps1 ├── Start-PSTimer.ps1 ├── Stop-MyTimer.ps1 ├── Stop-PSCountdownTimer.ps1 └── private.ps1 ├── images ├── mytimer.png ├── ps7-pscountdown.png ├── pscountdowntimer.png └── pstimertitle.png ├── sample-pscountdown.ps1 └── types └── mytimer.types.ps1xml /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/.github/ISSUE_TEMPLATE/other-request.yml -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/Changelog.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PSCountdownTasks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/PSCountdownTasks.txt -------------------------------------------------------------------------------- /PSTimers.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/PSTimers.psd1 -------------------------------------------------------------------------------- /PSTimers.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/PSTimers.psm1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/README.md -------------------------------------------------------------------------------- /Tests/PSTimers.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/Tests/PSTimers.tests.ps1 -------------------------------------------------------------------------------- /archive-changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/archive-changelog.md -------------------------------------------------------------------------------- /docs/Export-MyTimer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/docs/Export-MyTimer.md -------------------------------------------------------------------------------- /docs/Get-HistoryRuntime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/docs/Get-HistoryRuntime.md -------------------------------------------------------------------------------- /docs/Get-MyTimer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/docs/Get-MyTimer.md -------------------------------------------------------------------------------- /docs/Import-MyTimer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/docs/Import-MyTimer.md -------------------------------------------------------------------------------- /docs/Remove-MyTimer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/docs/Remove-MyTimer.md -------------------------------------------------------------------------------- /docs/Reset-MyTimer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/docs/Reset-MyTimer.md -------------------------------------------------------------------------------- /docs/Restart-MyTimer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/docs/Restart-MyTimer.md -------------------------------------------------------------------------------- /docs/Resume-MyTimer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/docs/Resume-MyTimer.md -------------------------------------------------------------------------------- /docs/Set-MyTimer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/docs/Set-MyTimer.md -------------------------------------------------------------------------------- /docs/Start-MyTimer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/docs/Start-MyTimer.md -------------------------------------------------------------------------------- /docs/Start-PSCountdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/docs/Start-PSCountdown.md -------------------------------------------------------------------------------- /docs/Start-PSCountdownTimer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/docs/Start-PSCountdownTimer.md -------------------------------------------------------------------------------- /docs/Start-PSCountdownTitle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/docs/Start-PSCountdownTitle.md -------------------------------------------------------------------------------- /docs/Start-PSTimer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/docs/Start-PSTimer.md -------------------------------------------------------------------------------- /docs/Stop-MyTimer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/docs/Stop-MyTimer.md -------------------------------------------------------------------------------- /docs/Stop-PSCountdownTimer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/docs/Stop-PSCountdownTimer.md -------------------------------------------------------------------------------- /docs/Suspend-MyTimer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/docs/Suspend-MyTimer.md -------------------------------------------------------------------------------- /docs/about_PSTimers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/docs/about_PSTimers.md -------------------------------------------------------------------------------- /en-US/PSTimers-help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/en-US/PSTimers-help.xml -------------------------------------------------------------------------------- /en-US/PSTimers.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/en-US/PSTimers.psd1 -------------------------------------------------------------------------------- /en-US/about_PSTimers.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/en-US/about_PSTimers.help.txt -------------------------------------------------------------------------------- /formats/mytimer.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/formats/mytimer.format.ps1xml -------------------------------------------------------------------------------- /functions/Export-MyTimer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/functions/Export-MyTimer.ps1 -------------------------------------------------------------------------------- /functions/Get-HistoryRuntime.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/functions/Get-HistoryRuntime.ps1 -------------------------------------------------------------------------------- /functions/Get-MyTimer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/functions/Get-MyTimer.ps1 -------------------------------------------------------------------------------- /functions/Import-MyTimer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/functions/Import-MyTimer.ps1 -------------------------------------------------------------------------------- /functions/Pause-MyTimer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/functions/Pause-MyTimer.ps1 -------------------------------------------------------------------------------- /functions/Remove-MyTimer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/functions/Remove-MyTimer.ps1 -------------------------------------------------------------------------------- /functions/Reset-MyTimer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/functions/Reset-MyTimer.ps1 -------------------------------------------------------------------------------- /functions/Restart-MyTimer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/functions/Restart-MyTimer.ps1 -------------------------------------------------------------------------------- /functions/Resume-MyTimer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/functions/Resume-MyTimer.ps1 -------------------------------------------------------------------------------- /functions/Set-MyTimer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/functions/Set-MyTimer.ps1 -------------------------------------------------------------------------------- /functions/Start-MyTimer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/functions/Start-MyTimer.ps1 -------------------------------------------------------------------------------- /functions/Start-PSCountdown.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/functions/Start-PSCountdown.ps1 -------------------------------------------------------------------------------- /functions/Start-PSCountdownTimer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/functions/Start-PSCountdownTimer.ps1 -------------------------------------------------------------------------------- /functions/Start-PSCountdownTitle.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/functions/Start-PSCountdownTitle.ps1 -------------------------------------------------------------------------------- /functions/Start-PSTimer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/functions/Start-PSTimer.ps1 -------------------------------------------------------------------------------- /functions/Stop-MyTimer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/functions/Stop-MyTimer.ps1 -------------------------------------------------------------------------------- /functions/Stop-PSCountdownTimer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/functions/Stop-PSCountdownTimer.ps1 -------------------------------------------------------------------------------- /functions/private.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/functions/private.ps1 -------------------------------------------------------------------------------- /images/mytimer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/images/mytimer.png -------------------------------------------------------------------------------- /images/ps7-pscountdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/images/ps7-pscountdown.png -------------------------------------------------------------------------------- /images/pscountdowntimer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/images/pscountdowntimer.png -------------------------------------------------------------------------------- /images/pstimertitle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/images/pstimertitle.png -------------------------------------------------------------------------------- /sample-pscountdown.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/sample-pscountdown.ps1 -------------------------------------------------------------------------------- /types/mytimer.types.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTimers/HEAD/types/mytimer.types.ps1xml --------------------------------------------------------------------------------