Jump to content

Recommended Posts

Posted

We need to do some software auditing and I need to find out how many copies of MSSQL install on our network including the product versions & editions (i.e. Standard or Enterprise)

 

What does everyone use to count the number of MSSQL installs on a network?

 

Thanks.

  • 6 months later...
Posted (edited)

From your SQL server, run a command prompt then type

SQLCMD -L

 

That will list all instances it finds on the network.

 

If you're just interested in a particular server,

SQLCMD -L | FIND /I "your_server_name"

 

and to just count instances

 

SQLCMD -L | FIND /I /C "your_server_name"

Edited by jinnantonnixx
Posted
Yes, I could have used it, but it's limited and does not reach across to different subnet of networks, security layers, firewalls, etc.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...