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……
13,557 total views, 1 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……
13,557 total views, 1 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……
6,575 total views, 2 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..……
22,962 total views, 2 views today
Here’s a PowerShell function to find non-base64 characters in a block of text. Function Find-NonBase64Chars { Param( [Parameter(Mandatory=$True)]$Text ) $InvalidCharacters = @() $x=0 ForEach ($Line……
4,545 total views
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……
27,887 total views, 1 views today
$ID = @() $openfiles = net file for ($x = 4; $x -lt $openfiles.count -2; $x++) { $ID += ($openfiles[$x] -split “\s+”)[0] } Something I’m……
3,091 total views