Microsoft SQL Server 2005 AdministrationBest Practices
Execute the following script in Query Editor to list all SQL servers on the network:
USE AdventureWorks GO
exec xp_cmdshell 'SQLCMD -L';
GO