3

For example, if I use an AD account to login on Windows 7 and then Windows 8, will I be able to tell in logs setup by default? If not by default, how would I set this logging up?

Bor
  • 33
  • 3

3 Answers3

1

Not explicitly, but it will show you the name of the computer. From there, you can cross-reference this with the AD object for the computer, which has the Windows version in it.

MDMarra
  • 100,183
  • 32
  • 195
  • 326
  • Is there a way to see this information historically? For example, can I see the ad objects state at some time in the past? – Bor Dec 10 '12 at 22:04
  • Alternatively, what defines a new ad object? If a machine changed OSes, could I then simply look at the last time the old OS's ad object was changed to see when the last login on a given OS was? – Bor Dec 10 '12 at 22:05
  • There is no historical view. If you reinstall an OS and rejoin it to the domain with the same name, them it will silently delete the old object and create a new one with the same name. What problem are you trying to solve? Maybe if you describe that, you'll get more usable information. – MDMarra Dec 10 '12 at 22:18
  • I'm trying to see the datetime that a machine changed OSes. The machine is a single user machine. Thank you for the help! – Bor Dec 10 '12 at 22:26
0

I'm not sure but you might be able to find the date as to when a machine changed the Os by doing some advanced sleuth work in the registry of the computer, or in the event viewer if the change was recent enough. Active Directory logs do not store such information (i.e. when a computer's OS changed.)

AntoineF
  • 21
  • 2
0

If you want to find the date it changed OSes you could always run the systeminfo command on the workstation via script and send the result to a file etc:

systeminfo | find "Original Install Date"
Enigman
  • 481
  • 2
  • 4