SQL Server get Unique 'BIOS' string? -
In Windows we can obtain a unique string that represents the BIOS (unique to that machine)
There is something comparable to SQL Server where I can identify that SQL Server installation or back up BIOS (unique to that installation)
may be a MAC address, ... although the machine may be more than one per copy.
create table #ipconfig (info varchar (256) null) #ipconfig insert in EXEC Master..xp_cmdshell 'ipconfig / all' SELECT SubString (info, CharIndex (':', info) + 1, 99) #ifconfig as the information in the form of '% physical address%' drop table #ipconfig
Comments
Post a Comment