├── .gitattributes ├── .github └── FUNDING.yml ├── GalleryScripts ├── Get-LockoutBlame.ps1 ├── Send-BlogTweet.ps1 ├── Start-TestCaseMeasurement.ps1 ├── TechSnipsTrello.ps1 ├── Test-DnsZone.ps1 ├── Test-RecurrencePattern.ps1 └── TrellOps.ps1 ├── General ├── Get-WDFileExists.ps1 ├── Get-WDGroupMemberContact.ps1 ├── KovertKringle │ ├── .vscode │ │ └── launch.json │ ├── KovertKringle.psd1 │ ├── KovertKringle.psm1 │ └── Public │ │ ├── Add-KKParticipant.ps1 │ │ ├── Clear-KKPairing.ps1 │ │ ├── Clear-KKParticipant.ps1 │ │ ├── Get-KKParticipant.ps1 │ │ ├── Remove-KKParticipant.ps1 │ │ ├── Send-KKNotification.ps1 │ │ └── Start-KKPairing.ps1 ├── New-WDCmdlet.ps1 ├── PlexServerShutdown.ps1 ├── Timesheet.ps1 ├── cmdletTemplate.ps1 ├── jeopardy.Tests.ps1 ├── jeopardy.ps1 ├── snippets.ps1 └── vmwareTemplate.ps1 ├── LICENSE.md ├── LiveStream ├── .vscode │ └── tasks.json ├── Microsoft.VSCode_profile.ps1 ├── MusicToaster │ └── NowPlaying Toast.ps1 └── build.ps1 ├── Modules └── RunBucket │ ├── Media │ ├── Stopwatch.png │ ├── credit.txt │ └── fire-fighter-294192_640.png │ ├── Private │ ├── Measure-RBDifference.ps1 │ ├── Start-RBResultDashboard.ps1 │ └── Start-TestCaseMeasurement.ps1 │ ├── Public │ ├── Start-ConsoleRunBucket.ps1 │ └── Start-RunBucket.ps1 │ ├── RunBucket.psd1 │ ├── RunBucket.psm1 │ └── test.ps1 ├── README.md ├── UniversalDashboard └── ToastApi.ps1 ├── VMware ├── Get-ConsolidationNeeded.ps1 ├── Get-MismatchedNIC.ps1 ├── Get-SemiUsableDiskInfo.ps1 ├── ManageOldSnapshots.ps1 ├── RandomSnippets.ps1 └── Start-Consolidation.ps1 ├── livecoding.tv ├── Add-ScheduledStream.ps1 ├── LazyLunch.ps1 ├── StreamCountdown │ └── StreamCountdown.psm1 ├── StreamWorker.ps1 ├── Watch-Stream.ps1 ├── Write-Stream.ps1 ├── ise_theme │ └── Dark Console Monokai Editor.StorableColorTheme.ps1xml ├── labwork-2015-05-29.ps1 └── panels │ ├── aboutme.png │ ├── faq.png │ ├── hardware.png │ ├── schedule.png │ └── whatistream.png └── profile.ps1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /GalleryScripts/Get-LockoutBlame.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/GalleryScripts/Get-LockoutBlame.ps1 -------------------------------------------------------------------------------- /GalleryScripts/Send-BlogTweet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/GalleryScripts/Send-BlogTweet.ps1 -------------------------------------------------------------------------------- /GalleryScripts/Start-TestCaseMeasurement.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/GalleryScripts/Start-TestCaseMeasurement.ps1 -------------------------------------------------------------------------------- /GalleryScripts/TechSnipsTrello.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/GalleryScripts/TechSnipsTrello.ps1 -------------------------------------------------------------------------------- /GalleryScripts/Test-DnsZone.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/GalleryScripts/Test-DnsZone.ps1 -------------------------------------------------------------------------------- /GalleryScripts/Test-RecurrencePattern.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/GalleryScripts/Test-RecurrencePattern.ps1 -------------------------------------------------------------------------------- /GalleryScripts/TrellOps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/GalleryScripts/TrellOps.ps1 -------------------------------------------------------------------------------- /General/Get-WDFileExists.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/General/Get-WDFileExists.ps1 -------------------------------------------------------------------------------- /General/Get-WDGroupMemberContact.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/General/Get-WDGroupMemberContact.ps1 -------------------------------------------------------------------------------- /General/KovertKringle/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/General/KovertKringle/.vscode/launch.json -------------------------------------------------------------------------------- /General/KovertKringle/KovertKringle.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/General/KovertKringle/KovertKringle.psd1 -------------------------------------------------------------------------------- /General/KovertKringle/KovertKringle.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/General/KovertKringle/KovertKringle.psm1 -------------------------------------------------------------------------------- /General/KovertKringle/Public/Add-KKParticipant.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/General/KovertKringle/Public/Add-KKParticipant.ps1 -------------------------------------------------------------------------------- /General/KovertKringle/Public/Clear-KKPairing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/General/KovertKringle/Public/Clear-KKPairing.ps1 -------------------------------------------------------------------------------- /General/KovertKringle/Public/Clear-KKParticipant.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/General/KovertKringle/Public/Clear-KKParticipant.ps1 -------------------------------------------------------------------------------- /General/KovertKringle/Public/Get-KKParticipant.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/General/KovertKringle/Public/Get-KKParticipant.ps1 -------------------------------------------------------------------------------- /General/KovertKringle/Public/Remove-KKParticipant.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/General/KovertKringle/Public/Remove-KKParticipant.ps1 -------------------------------------------------------------------------------- /General/KovertKringle/Public/Send-KKNotification.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/General/KovertKringle/Public/Send-KKNotification.ps1 -------------------------------------------------------------------------------- /General/KovertKringle/Public/Start-KKPairing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/General/KovertKringle/Public/Start-KKPairing.ps1 -------------------------------------------------------------------------------- /General/New-WDCmdlet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/General/New-WDCmdlet.ps1 -------------------------------------------------------------------------------- /General/PlexServerShutdown.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/General/PlexServerShutdown.ps1 -------------------------------------------------------------------------------- /General/Timesheet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/General/Timesheet.ps1 -------------------------------------------------------------------------------- /General/cmdletTemplate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/General/cmdletTemplate.ps1 -------------------------------------------------------------------------------- /General/jeopardy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/General/jeopardy.Tests.ps1 -------------------------------------------------------------------------------- /General/jeopardy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/General/jeopardy.ps1 -------------------------------------------------------------------------------- /General/snippets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/General/snippets.ps1 -------------------------------------------------------------------------------- /General/vmwareTemplate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/General/vmwareTemplate.ps1 -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LiveStream/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/LiveStream/.vscode/tasks.json -------------------------------------------------------------------------------- /LiveStream/Microsoft.VSCode_profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/LiveStream/Microsoft.VSCode_profile.ps1 -------------------------------------------------------------------------------- /LiveStream/MusicToaster/NowPlaying Toast.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/LiveStream/MusicToaster/NowPlaying Toast.ps1 -------------------------------------------------------------------------------- /LiveStream/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/LiveStream/build.ps1 -------------------------------------------------------------------------------- /Modules/RunBucket/Media/Stopwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/Modules/RunBucket/Media/Stopwatch.png -------------------------------------------------------------------------------- /Modules/RunBucket/Media/credit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/Modules/RunBucket/Media/credit.txt -------------------------------------------------------------------------------- /Modules/RunBucket/Media/fire-fighter-294192_640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/Modules/RunBucket/Media/fire-fighter-294192_640.png -------------------------------------------------------------------------------- /Modules/RunBucket/Private/Measure-RBDifference.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/Modules/RunBucket/Private/Measure-RBDifference.ps1 -------------------------------------------------------------------------------- /Modules/RunBucket/Private/Start-RBResultDashboard.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/Modules/RunBucket/Private/Start-RBResultDashboard.ps1 -------------------------------------------------------------------------------- /Modules/RunBucket/Private/Start-TestCaseMeasurement.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/Modules/RunBucket/Private/Start-TestCaseMeasurement.ps1 -------------------------------------------------------------------------------- /Modules/RunBucket/Public/Start-ConsoleRunBucket.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/Modules/RunBucket/Public/Start-ConsoleRunBucket.ps1 -------------------------------------------------------------------------------- /Modules/RunBucket/Public/Start-RunBucket.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/Modules/RunBucket/Public/Start-RunBucket.ps1 -------------------------------------------------------------------------------- /Modules/RunBucket/RunBucket.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/Modules/RunBucket/RunBucket.psd1 -------------------------------------------------------------------------------- /Modules/RunBucket/RunBucket.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/Modules/RunBucket/RunBucket.psm1 -------------------------------------------------------------------------------- /Modules/RunBucket/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/Modules/RunBucket/test.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/README.md -------------------------------------------------------------------------------- /UniversalDashboard/ToastApi.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/UniversalDashboard/ToastApi.ps1 -------------------------------------------------------------------------------- /VMware/Get-ConsolidationNeeded.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/VMware/Get-ConsolidationNeeded.ps1 -------------------------------------------------------------------------------- /VMware/Get-MismatchedNIC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/VMware/Get-MismatchedNIC.ps1 -------------------------------------------------------------------------------- /VMware/Get-SemiUsableDiskInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/VMware/Get-SemiUsableDiskInfo.ps1 -------------------------------------------------------------------------------- /VMware/ManageOldSnapshots.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/VMware/ManageOldSnapshots.ps1 -------------------------------------------------------------------------------- /VMware/RandomSnippets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/VMware/RandomSnippets.ps1 -------------------------------------------------------------------------------- /VMware/Start-Consolidation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/VMware/Start-Consolidation.ps1 -------------------------------------------------------------------------------- /livecoding.tv/Add-ScheduledStream.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/livecoding.tv/Add-ScheduledStream.ps1 -------------------------------------------------------------------------------- /livecoding.tv/LazyLunch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/livecoding.tv/LazyLunch.ps1 -------------------------------------------------------------------------------- /livecoding.tv/StreamCountdown/StreamCountdown.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/livecoding.tv/StreamCountdown/StreamCountdown.psm1 -------------------------------------------------------------------------------- /livecoding.tv/StreamWorker.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/livecoding.tv/StreamWorker.ps1 -------------------------------------------------------------------------------- /livecoding.tv/Watch-Stream.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/livecoding.tv/Watch-Stream.ps1 -------------------------------------------------------------------------------- /livecoding.tv/Write-Stream.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/livecoding.tv/Write-Stream.ps1 -------------------------------------------------------------------------------- /livecoding.tv/ise_theme/Dark Console Monokai Editor.StorableColorTheme.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/livecoding.tv/ise_theme/Dark Console Monokai Editor.StorableColorTheme.ps1xml -------------------------------------------------------------------------------- /livecoding.tv/labwork-2015-05-29.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/livecoding.tv/labwork-2015-05-29.ps1 -------------------------------------------------------------------------------- /livecoding.tv/panels/aboutme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/livecoding.tv/panels/aboutme.png -------------------------------------------------------------------------------- /livecoding.tv/panels/faq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/livecoding.tv/panels/faq.png -------------------------------------------------------------------------------- /livecoding.tv/panels/hardware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/livecoding.tv/panels/hardware.png -------------------------------------------------------------------------------- /livecoding.tv/panels/schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/livecoding.tv/panels/schedule.png -------------------------------------------------------------------------------- /livecoding.tv/panels/whatistream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/livecoding.tv/panels/whatistream.png -------------------------------------------------------------------------------- /profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windos/powershell-depot/HEAD/profile.ps1 --------------------------------------------------------------------------------