Here is the MOF edit for DataShift – Local found on the SMS Expert Site http://www.smsexpert.com/MOF/Scripts.aspx DataShift –Local will return a list of who is within the Local Administrator group. #pragma namespace(“\\\\.\\root\\cimv2\\SMS”) #pragma deleteclass(“SMX_LocalAdmins”,NOFAIL) [SMS_Report(TRUE), SMS_Group_Name(“Local Administrators”), SMS_Class_ID(“MICROSOFT|SMXLocalAdmins|1.0”)] class SMX_LocalAdmins : SMS_Class_Template { [SMS_Report(TRUE),Key] String Account; };
Month: November 2007
With the November release of update ConfigMgr 2007 documentation there are a few key finds. List of Log Files in Configuration Manager 2007 http://technet.microsoft.com/en-ca/library/bb892800.aspx Inbox Folders in Configuration Manager 2007 http://technet.microsoft.com/en-ca/library/bb892790.aspx Ports used by Configuration Manager http://technet.microsoft.com/en-ca/library/bb632618.aspx
Here is the MOF edit for DataShift – Printers found on the SMS Expert Site http://www.smsexpert.com/MOF/Scripts.aspx Datashift – Printers will return a list of Printers including Network printers, which SMS/ConfigMgr can’t. #pragma namespace(“\\\\.\\root\\cimv2\\SMS”) #pragma deleteclass(“SMX_Printer”,NOFAIL) [SMS_Report(TRUE), SMS_Group_Name(“Printer Information”), SMS_Class_ID(“MICROSOFT|SMXPrinterInfo|1.0”)] class SMX_Printer: SMS_Class_Template { [SMS_Report(TRUE)] String Comment; [SMS_Report(TRUE)] boolean Default ; [SMS_Report(TRUE),Key] string DeviceID; […]
Here is the MOF edit for DataShift – Shares found on the SMS Expert Site http://www.smsexpert.com/MOF/Scripts.aspx DataShift – Shares will return a list of share on the local PC. #pragma namespace(“\\\\.\\root\\cimv2\\SMS”) #pragma deleteclass(“SMX_Shares”,NOFAIL) [SMS_Report(TRUE), SMS_Group_Name(“Share Information”), SMS_Class_ID(“MICROSOFT|SMXShareInfo|1.0”)] class SMX_Shares : SMS_Class_Template { [SMS_Report(TRUE)] boolean AllowMaximum; [SMS_Report(TRUE)] string Description; [SMS_Report(TRUE)] string Description; [SMS_Report(TRUE),Key] […]
Signup here http://www.rfid4u.com/services/freeelearning.asp for free RFID basics and RFID & UID/DOD Compliances e-learning courses.
select CS.Name0, CS.UserName0, RAM.TotalPhysicalMemory0, RAM.TimeStamp, HRAM.TotalPhysicalMemory0, Max(HRAM.TimeStamp) from dbo.v_GS_COMPUTER_SYSTEM CS, dbo.v_GS_X86_PC_MEMORY RAM, dbo.v_HS_X86_PC_MEMORY HRAM Where CS.ResourceID = RAM.ResourceID and CS.ResourceID = HRAM.ResourceID and RAM.TotalPhysicalMemory0 != HRAM.TotalPhysicalMemory0 Group by CS.Name0, CS.UserName0, RAM.TotalPhysicalMemory0, RAM.TimeStamp, HRAM.TotalPhysicalMemory0
elect USB.Description0, count(USB.Description0) From dbo.v_GS_USB_DEVICE USB Group By USB.Description0
Select RAM.TotalPageFileSpace0, count(RAM.TotalPageFileSpace0) as ‘Total’ From v_GS_X86_PC_MEMORY RAM Group By RAM.TotalPageFileSpace0
You can discover the current wage rates for numerous occupations within local areas that interest you in the Wages & Salaries section. The Employment Prospects section will provide you with information on local hiring shortages or surpluses. You can search for complete Job Descriptions and Job and Skill Requirements by occupation and by local area. […]
Select avg(RAM.TotalPhysicalMemory0) From v_GS_X86_PC_MEMORY RAM