gkamenjati
Posts: 108
Score: 0 Joined: 6/8/2005 From: San Jose, California Status: offline
|
Sorry for my delayed response (too busy), and thank you for the link to Ramsey's post (we are using it). In regards to the subject, and as you see from the bigger PIC I uploaded I'm looking at collecting the monitor info and the local printer info, for that obviously i need to Change the mof file; and as you Sherry, i don't know how to code this into the mof file to start collecting the info. Any help will be appreciated. the script has this code in it related to each: Monitor: <% fp_sQry="SELECT distinct monitors_DATA.modelname00 as 'Monitor Model', monitors_DATA.SerialNumber00 as 'Monitor Serial Number' FROM System_DATA INNER JOIN monitors_DATA ON System_DATA.MachineID = monitors_DATA.MachineID where System_DATA.name0 = '::computername::'" fp_sDefault="computername=" fp_sNoRecords="<tr><td colspan=2 align=left width=""100%"">No records returned.</td></tr>" fp_sDataConn="SMSWEB" fp_iMaxRecords=256 fp_iCommandType=1 fp_iPageSize=0 fp_fTableFormat=True fp_fMenuFormat=False fp_sMenuChoice="" fp_sMenuValue="" fp_iDisplayCols=2 fp_fCustomQuery=True BOTID=9 fp_iRegion=BOTID %> and for the printer: <% fp_sQry="SELECT printer_device_DATA.name00 as 'Printer Name', printer_device_DATA.Drivername00 as 'Printer Type' FROM System_DATA INNER JOIN printer_device_DATA ON System_DATA.MachineID = printer_device_DATA.MachineID where System_DATA.name0 = '::computername::' and printer_device_DATA.name00 not like '%Office Document Image%' and printer_device_DATA.name00 not like '%IXOS-ARCHIVE%' and printer_device_DATA.name00 not like 'HP Mobile%' order by printer_device_DATA.name00 " fp_sDefault="computername=" fp_sNoRecords="<tr><td colspan=2 align=left width=""100%"">No records returned.</td></tr>" fp_sDataConn="SMSWEB" fp_iMaxRecords=256 fp_iCommandType=1 fp_iPageSize=0 fp_fTableFormat=True fp_fMenuFormat=False fp_sMenuChoice="Printer Name" fp_sMenuValue="Printer Name" fp_iDisplayCols=2 fp_fCustomQuery=True BOTID=10 fp_iRegion=BOTID %> Thumbnail Image
Attachment (1)
|