0

How can I update the system time using Visual Studio with C#(.Net)??

BIBD
  • 15,107
  • 25
  • 85
  • 137
user62958
  • 4,669
  • 5
  • 32
  • 35
  • look here http://stackoverflow.com/questions/204936/set-time-programmatically-using-c – Hath Feb 05 '09 at 17:44

1 Answers1

2

This should work.

Process.Start("time", "12:00:00");
Jeff Martin
  • 10,812
  • 7
  • 48
  • 74