VBscript Configure Clients Internet based Management Point Setting

on error resume next ‘ Create variables.Dim newInternetBasedManagementPointFQDNDim client newInternetBasedManagementPointFQDN = “mp.contoso.com” ‘ Create the client COM object.Set client = CreateObject (“Microsoft.SMS.Client”) ‘ Set the Internet-Based Management Point FQDN by calling the SetCurrentManagementPoint method.client.SetInternetManagementPointFQDN newInternetBasedManagementPointFQDN ‘ Clear variables.Set client = NothingSet internetBasedManagementPointFQDN = Nothing

Wake ON LAN – End to End Configuration at Client Site

Dependencies External to Configuration Manager 2007 Dependency More Information Network cards must support the standard Magic Packet format. All network cards that have the Windows Logo certificate support this Magic Packet format. Computers must be configured for wake-up packets on the network card and in the computer BIOS. Refer to your hardware vendor’s documentation for … Read more

What kind of Data Will be flow between the Sites

  Child sites send the following information to their direct parent sites: Discovery information Inventory information Site control information Status messages The Data collected from a child site to a parent site are listed here: Discovery data records (DDRs) Inventory data License balancing data Site control files Status messages The Data passed from a parent … Read more

What is a Central Site?

  A central site has no parent site. Typically, a central site has child and grandchild sites and aggregates all of their client information to provide centralized management and reporting. A site with no parent and no child site is still called a central site although it is also referred to as a stand-alone site. … Read more

Distribution Points and mystery of it’s folders

When a DP Role Enabled we can see at least four folders.   1.SMSPKG ==>.PCK & *.DLX *.DLT.x2.SMSPKGX$ ==> Packages Folders & Source 3.SMSPKGSIG ==> Contains .Tar files4.SMSSIG$  Contains .Tar files Move or delete SMSPKGSIG folder: – SCCM2007 creates a folder “SMSPKGSIG” on the drive where the SCCM ProgramFiles are installed. To move the folder … Read more

Choose SCCM DP Vs Secondary site Vs BDP

1) Implementing the Secondary site Pros:-     Ø  Traffic  can be compressed/ Scheduled/Throttled & rate limit on the  address Ø  Secondary sites do not require additional Configuration Manager 2007 server licenses. Ø  Secondary sites do not require an additional SQL Server database at the secondary site. Ø  Clients can be managed across a slow network … Read more

only Desktops in collection

only Desktops in collection   select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_SYSTEM_ENCLOSURE on SMS_G_System_SYSTEM_ENCLOSURE.ResourceID = SMS_R_System.ResourceId where SMS_G_System_SYSTEM_ENCLOSURE.ChassisTypes != “10”

WMI Fix Batch file to run on multiple systems

@echo off%windir%system32wbemwinmgmt /clearadap%windir%system32wbemwinmgmt /kill%windir%system32wbemwinmgmt /unregserver%windir%system32wbemwinmgmt /reserver%windir%system32wbemwinmgmt /resyncperfnet stop winmgmt /yif exist %windir%system32wbemrepository.old rmdir /s /q %windir%system32wbemrepository.oldren %windir%system32wbemrepository repository.oldregsvr32 /s %systemroot%system32scecli.dllregsvr32 /s %systemroot%system32userenv.dllfor /f %%s in (‘dir /b /s %windir%system32wbem*.dll’) do regsvr32 /s %%sfor /f %%s in (‘dir /b /s %windir%system32wbem*.mof’) do mofcomp %%sfor /f %%s in (‘dir /b %windir%system32wbem*.mfl’) do mofcomp %%snet start winmgmt%windir%system32wbemwmiprvse /regserver … Read more