Code snippets : Unzip file in PowerShell

Recently I needed to unzip file from PowerShell script. Here is result what I did use to achieve that: $archiveDir = "C:\Downloads" $fileZip = $archiveDir + "\file.zip" $shell=new-object -com shell.application $zip = $shell.NameSpace($fileZip)...

Tips & Tricks : SugarCRM CRASH error after installation

When tried to access SugarCRM 6.5.13 after installation following error showed up in browser: CRASH: PHP segmentation violation in session_start() called at [/install.php:486] To fix that issue .htaccess file has to be created in SugarCRM main older with following...