Thanks for the code but there seems to be a typo on the WHERE condition which will render an error after execution. Here is the code:SELECT registry_key, value_name, value_data
FROM sys.dm_server_registry
WHERE key_name LIKE N'%ControlSet%';
It should read:SELECT registry_key, value_name, value_data
FROM sys.dm_server_registry
WHERE registry_key LIKE N'%ControlSet%';I hope this helps out the next Nubie.
↧