PowerShellScripts.dk is online! Again!

I finally managed to plug in the power to my domain, powershellscripts.dk... And some content will pop up here - maybe even soon!

While I usually use Notepad++ as my favourite web editor (I'm that old school), I found this little gem, that I'm taking for a test drive:
RocketCake!

Anyways, in a future both bright and wonderful, you can browse and grab any scripts from here. It's yours for free to do with as you please.
If my script contain code found elsewhere, I'll keep a comment on that - please respect any mention to such external sources and keep that
in your script at least. Do consider adding a comment of origin to this page as well.


Happy scripting!
Henrik

---

PS!
Well, I wouldn't want to send you away without just a little bit of code. Take below to a Powershell IDE on a Windows device - and remember audio (or it get a bit of a bland experience :) )



--- oOoOoOo ---


Add-Type -AssemblyName System.speech

$quote = New-Object System.Speech.Synthesis.SpeechSynthesizer
$quote.Rate = 0

$url="https://api.chucknorris.io/jokes/random"
$webResult = Invoke-WebRequest -Uri $url

$joke = ($webResult.content | convertFrom-json).value

$joke
$quote.Speak($joke)