Microsoft Outlook increase 50 Go limit

posted in: Tips and howto 0

Outlook ost are limited to 50 Go on Windows. This registry entry put it to 100 Go : [HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Outlook\PST] “MaxLargeFileSize”=dword:00019000 You must replace the 16.0 by your version of Microsoft Office. 16.0 is the current 365 version. Here is the … Read More

Apache htaccess force site to SSL

posted in: Tips and howto 0

To force an HTTPS connection on your website you just need to add this code to your .htaccess file : RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] This htaccess file need to be at the root of your … Read More

Robocopy on Windows

posted in: Tips and howto 0

Robocopy is a robust file copy and replicator for Windows Here is a simple commande line to replicate one path to another : robocopy pathFrom:\…\ pathto:\…\ *.* /MIR /Z /MT /R:1 /W:0 /V