Hi folks, In a previous post I showed off a little service I had written in PowerShell to wrap Automic ARA’s ARATools.jar methods in a…
10,197 total views, 5 views today
Powershell scripts, snippets and nuggets of knowledge.
Hi folks, In a previous post I showed off a little service I had written in PowerShell to wrap Automic ARA’s ARATools.jar methods in a…
10,197 total views, 5 views today
Hi folks, Long time no post! I believe the last thing I posted was some sort of Craigslist apartment-scanning script I was using to sort…
5,542 total views, no views today
I was very, very tired of copying/pasting a template saying “Hi I’m Rex and I’m thinking about moving to NYC because of a job offer..…
20,076 total views, 6 views today
Here’s a PowerShell function to find non-base64 characters in a block of text. Find-NonBase64Chars PowerShell Function Find-NonBase64Chars { Param( [Parameter(Mandatory=$True)]$Text ) $InvalidCharacters = @() $x=0…
4,000 total views, 1 views today
I wrote a little function that utilizes Microsoft Office Document Imaging (MODI) to retrieve text from images with OCR. I have put a few notes…
24,363 total views, 8 views today
$ID = @() $openfiles = net file for ($x = 4; $x -lt $openfiles.count -2; $x++) { $ID += ($openfiles[$x] -split “\s+”)[0] } 12345 $ID…
2,571 total views, no views today