Hi guys can I know how to extract timestamp for registry? Cause I am building a program to track the changes in the registry.
So far i managed to read the registry but there is only name, type and data in my registry editor. Can I know how else can i get the modified date?
size = winreg.QueryInfoKey(key)[1]
for i in range(size):
data = winreg.EnumValue(key, i)
dict[data[0]] = data[1]
for the above code the output i got is
{'CVListTTL': 0, 'UnattendLoaded': 1, 'IECompatVersionHigh': 268435456, ...
Another question, can I just scan the whole system instead of a specific subkey like
result = winreg.OpenKey(winreg.HKEY_CURRENT_USER, r"Software\Microsoft\\Internet Explorer\\CodeIntegrity")