|
How to Query for All Software |
Two choices here:
This query could take a little time depending on the
number of lines in your software inventory table.
|
Queries for Client Advertisement Status |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query for All NT and W2K Workstations, Clients and Their Service Pack Level |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query for All Software on All Systems |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query for All Systems with WMI v1.5 |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query for Free Disk Space on Server Clients |
|
This Query will show disk information. Limit to 'All
Servers' or 'All NT Servers'.
select Sys.Name, LD.Name, LD.FreeSpace, LD.Size |
Query for Hardware Scan Over 5 Days Old (Servers) |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query for Hardware Scan Over 5 Days Old (Workstations) |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query for Installed Applications |
|
Does anyone know of a way to collect or
report an inventory of all "installed" Applications through SMS? I can
bring up a list from reporting the .EXE files however this also includes
programs that have been copied to the hard drive and not installed. I need to
provide an accurate list of installed applications.
Contributed
By: Cliff Hobbs [MVP SMS] |
Query for Last Logon User, Machine Name and Full Name |
|
Contributed By: Cliff Hobbs [MVP SMS] Want
to know who the last logged onto your machines? Here's a query that will show
you the Last Logon User, Machine Name and Full Name ...
[Go to article] |
Query for NAV CE v7.5 |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query for Systems Without NT SP4 or SP5 |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query That Lists All Windows 95 Users, Their CPU And Processor Speed |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query to Cross Reference User IDs in a Group by NetBIOS Name |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query to Delete a Machine From the SMS Database |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query to Detect All Systems with Static IP Addresses |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query to Determine Master Browser |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query to Find All Status of a Service |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query to Find and Delete Systems with Inventory over 30 Days Old |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query to Find Old Versions of WUSER32.EXE |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query to Find PDAs |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query to Find Systems With a Particular File |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query to Find Systems With THIS But Not THAT |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query to Find Systems Without a File |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query to Find Systems Without THIS or THAT |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query to Find the Version of DCOM and WMI on 9x/ME |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query to Identify the Type of SQL Connection |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query to Isolate Server from Workstation |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query to List by OS and SP Level |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query to Look for Workstations that Haven't Run Inventory Since a Prompted Date |
|
I am trying to do query to look for workstations that have not run inventory collection since a prompted date. Here is what I have: select SMS_G_System_COMPUTER_SYSTEM.Name from SMS_R_System inner join SMS_G_System_COMPUTER_SYSTEM on SMS_G_System_COMPUTER_SYSTEM.ResourceID = SMS_R_System.ResourceId inner join SMS_G_System_WORKSTATION_STATUS on SMS_G_System_WORKSTATION_STATUS.ResourceID = SMS_R_System.ResourceId where DATEPART(DD, SMS_G_System_WORKSTATION_STATUS.LastHardwareScan) < ##PRM:SMS_G_System_WORKSTATION_STATUS.LastHardwareScan## It doesn't work though because of the format of the information returned in the last part of the query (I think)
Contributed
By: Cliff Hobbs [MVP SMS] Take special notice of the way the date must be formatted. |
Query to See Which Windows 95 Clients have File and Print Sharing Enabled |
|
Contributed
By: Ed Aldrich [MVP SMS] select SMS_R_System.NetbiosName,
SMS_R_System.LastLogonUserName, SMS_R_System.IPSubnets,
SMS_G_System_DRIVER_VXD.Name from SMS_R_System inner join
SMS_G_System_DRIVER_VXD on SMS_G_System_DRIVER_VXD.ResourceID =SMS_R_System.ResourceId
where SMS_G_System_DRIVER_VXD.Name = "VSERVER" |
Query to Select Defined Packages |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query to Select DHCP Clients |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query to Select ONLY SMS SP2 Clients |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query to Select Specific File Name(s) |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query to Show All Clients that Don't Travel |
|
Here's a Query to show you all SMS Clients that don't travel:
|
Query to Show All Known Software Products by Company |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query to Show DPs and CAPs |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query to Show Machines Reporting Problems Longer than 20 Days |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query to Show Servers Rebooted Within Last 30 Days |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query to Show the WBEM Version |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query to Show which Workstations are on which Subnet |
|
I am trying to make a bunch of queries which
will give me workstations on certain TCP/IP subnets. I have been able to create
and export these queries with SMS Site Properties Manager. Here is an example of
a query. {*Query SMS_Query Name=InfoCenter - All NT
Workstations on Subnet172.16.000.0 QueryID=DTC000B2*} What I have tried to do is import this
example query into Access, Excel, Word etc. and generate a series of queries
which run through Subnet 172.16.xxx.0 through Subnet 172.16.yyy.0. This will
save me a lot of time if I can get it to work. The problem is the code that is
generated does not work at all. It seems that there are certain special
characters which are part of the exported query which are not happy being
manipulated. If you have already created the queries then you can run them in Excel using the 'SMSQuery.xls' spreadsheet that comes with SMS. Stephen Gutknecht updated it to work with more sophisticated queries and his version can be found at: This gives you a list of queries at a site and lets you
import the results, and run several at once in batches. |
Query to Test for DCOM |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query to Test for NAV |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
Query to Test for Office Patch Level |
|
Contributed
By: Cliff Hobbs [MVP SMS] |
| © FAQShop.com 2003 - 2008 |
|
|