Check if the required services and ports are allowed to push an agent or run discovery with this stand alone utility.
This is a new tool in the Resources Kit for MOM 2005.
Download
It is a great solution for implement a DR solution for MOM 2005. It provides automatic failover and monitoring continuity through:
- Muliple Management Groups.
- Failover Management Servers within a Management Group.
- Clustered MOM Database.
- MultiHome MOM Agent.
- DR Sites.
More Information About Service Continuity Solution Accelerator.
In some cases, You may want to change the Machine Policy Refresh Cycle on the SMS Client. And you may want the SMS Clients to get the Updated Policy/Instruction from SMS ASAP.
To do this automatically, You should schedule the Script to run on the SMS Clients.
===========================================
On Error Resume Next
Dim objCPAppletMgr
Dim objClientActions
Dim objClientAction
Dim strActionName
strActionName="Request & Evaluate Machine Policy"
'Get the Control Panel applet manager object
set objCPAppletMgr = CreateObject("CPApplet.CPAppletMgr")
'Get a collection of client actions
set objClientActions=objCPAppletMgr.GetClientActions
'Loop through the available client actions
For Each objClientAction In objClientActions
If objClientAction.Name = strActionName Then
objClientAction.PerformAction
WScript.Echo "Action " + objClientAction.Name + " initiated"
End If
Next
===========================================
You can get more SMS scripts on the Microsoft Script Center!
Finds all SMS Clients that have the resources required to support Offiice 2003. This requires a 233MHz processor, 128MB Ram, 400 MB of free space, and Windows 2000 SP3 or later (including Windows XP and Windows Server 2003)
select SMS_R_System.Name, SMS_R_System.SMSInstalledSites,
SMS_R_System.OperatingSystemNameandVersion,
SMS_R_System.ADSiteName, SMS_R_System.IPSubnets from
SMS_R_System inner join SMS_G_System_PROCESSOR on
SMS_G_System_PROCESSOR.ResourceID =
SMS_R_System.ResourceId inner join
SMS_G_System_X86_PC_MEMORY on
SMS_G_System_X86_PC_MEMORY.ResourceID =
SMS_R_System.ResourceId inner join
SMS_G_System_LOGICAL_DISK on
SMS_G_System_LOGICAL_DISK.ResourceID =
SMS_R_System.ResourceId inner join
SMS_G_System_OPERATING_SYSTEM on
SMS_G_System_OPERATING_SYSTEM.ResourceID =
SMS_R_System.ResourceId where
(SMS_R_System.OperatingSystemNameandVersion = "Microsoft
Windows NT Workstation 5.0" and SMS_G_System_OPERATING_SYSTEM.CSDVersion >= "Service
Pack 3") or (SMS_R_System.OperatingSystemNameandVersion =
"Microsoft Windows NT Server 5.0" and SMS_G_System_OPERATING_SYSTEM.CSDVersion >= "Service
Pack 3") or (SMS_R_System.OperatingSystemNameandVersion =
"Microsoft Windows NT Advanced Server 5.0" and SMS_G_System_OPERATING_SYSTEM.CSDVersion >= "Service
Pack3") or SMS_R_System.OperatingSystemNameandVersion =
"Microsoft Windows NT Server 5.2" or SMS_R_System.OperatingSystemNameandVersion = "Microsoft
Windows NT advanced Server 5.2" or SMS_R_System.OperatingSystemNameandVersion = "Microsoft
Windows NT Workstation 5.1" and SMS_G_System_PROCESSOR.MaxClockSpeed >= 233 and SMS_G_System_X86_PC_MEMORY.TotalPhysicalMemory >= 130612
and (SMS_G_System_LOGICAL_DISK.FreeSpace >= 400 and
SMS_G_System_LOGICAL_DISK.Name = "C:")