posts

Examining Scheduled Tasks

There is a COM interface that you can use to select and dump any scheduled task definition. Just make sure you are running PowerShell with full...

Reversing Text Strings

Here's a simple trick to reverse a text string: $text = 'Hello World' $text = $Text.ToCharArray() [Array]::Reverse($text) -join $text...

1 71 72 73 74 75 80