Change date on a computer that is attached to a domain

Is it possible to change the date of a computer that is attached to a domain and have it stick? I've researched this for a few days and haven't found anything confirming or denying that this is possible. The computer we have is Windows 10 and the domain controller is Windows Server 2012 R2. I can provide more details if needed.

Thanks.


Solution 1:

It's not recommended for a lot of reasons, but here is how to:

First, unregister your time service to not resync. On elevated prompt run:

W32TM /unregister

Then, change set the time you want using the command time and date:

time 05:23:00 AM
date 5/15/2009

Rollback:

W32TM /register
W32TM /resync

Source:
http://ss64.com/nt/w32tm.html
http://www.wikihow.com/Change-the-Computer-Time-and-Date-Using-the-Command-Prompt

Edit: Corrected rollback command.