Toggen Blog

Tech tips

Articles

Latest

Access

Blog History

PowerShell Export Multiple Mailboxes to PST

This script exports the email aliases in $export_names to a file with a yyyymmdd date stamp. The BadItemLimit is jacked really high because when a mailbox is 24+ GB and has a lot of weird Chinese and other character sets that make the export think it's corrupt. I'm...

Optus Android App Fail

Optus Android App Fail

Any example of inconsistent behaviour in an Android Mobile app. This is from Optus a Telco supplier. You have an amount to pay value and a click to pay button. The next screen should carry over the amount to pay value but instead has a value from  a payment made...

Shortening your PHP Code

Learning PHP using firstly CakePHP 2 and now moving onto CakePHP 3 I'm finding there are some ways PHP has changed to allow you to write less and get the same result. Arrays Before <?php $myarray = array( 'one' => 'One', 'two' => 'Two', 'three' => 'Three'...