Sets the system date and time through the use of platform dependent commands.
Only supports Windows and Linux as of now.
npm i set-system-clock -S
// @dateTime - The date and time to set the system clock to
DateTimeControl.setDateTime(dateTime: Date);
var DateTimeControl = require('set-system-clock');
// Sets the date and time to the date specified
DateTimeControl.setDateTime(new Date('8/1/2017 13:14:12'));