SOLVED: What are Containers In Windows Server 2016

The shortest description I can come with is, Containers are deduplication for Virtual Machines.   In other words, Containers is the term used to describe sharing of common files and memory space typically applied to Virtual Machines. The notion is that classic …

SOLVED: What are Nonroutable IP Addresses?

Nonroutable IP addresses are the IP’s that are typically used inside a LOCAL Area Network (i.e. your home or office) and cannot have their packets transferred to (or from!) the Internet.  Nonroutable addresses were defined by RFC1918 way back in 1996 in …

SOLVED: What is Windows Update For Business

Windows Update for Business is a new product from Microsoft that will be made available for free to corporate customers using Windows 10.  As of today’s date, the software has not been released and little is known beyond Microsoft’s brief …

SOLVED: How To MOVE Files Based On Their Age using RoboCopy

Below is a script of how to MOVE files to a folder based on their age: ROBOCOPY <source> <destination> /MOVE /E /MINAGE:<number_of_days> /CREATE /R:1 /W:1 /XD <folders_you_want_to_omit> Sample: ROBOCOPY E:\ E:\_ToBeDeleted /MOVE /E /MINAGE:21 /CREATE /R:1 /W:1 /XD E:\COMPANY_PICS E:\_ToBeDeleted The translation …