Microsoft Outlook increase 50 Go limit
Outlook ost are limited to 50 Go on Windows. This registry entry put it to 100 Go : "MaxLargeFileSize"=dword:00019000 You must replace the 16.0 by your version of Microsoft Office. 16.0 is... Read More
Powershell add printer and drivers
This small script automatically add a driver and a printer to Windows 10 Read More
Apache htaccess force site to SSL
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} This htaccess file need... Read More
Robocopy on Windows
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 Read More