Tag Archives: file copy

SSH zip only certain types of files recursively on Linux

If you are looking for a command to run via ssh that ZIPs all files (of a certain type) recursively here you go: 1 - Switch into the website folder, then run zip -R YOURZIPFILENAME '*.php' '*.html' '*.js' '*.css' 2 - You can also run this from outside the website folder: zip -r YOURZIPFILENAME website_folder…
Read more

How to clone a hard drive to a new solid state disk (SSD)

Installing a solid-state drive (SSD) is one of the best upgrades you can make to your computer, but migrating your Windows installation can be tricky, because your data might not all fit on the drive. UPDATE: If you are doing lots of cloning, make it easy and simply buy a offline clone device from Amazon:…
Read more

Exchange 2010 Mailbox Export to PST

If you have an exchange server, you most likely have had people leave your organization, and than needed a copy/backup of their mailbox.   Well here are the basic instructions to export that mailbox to a PST file: New-ManagementRoleAssignment –Role “Mailbox Import Export” –User "DOMAIN\USER" (replace "DOMAIN" with your domain and "USER" with your user that…
Read more