For a specific Advertisement status for last 3 Days…

—for a specific Advertisement status for last 3 Days… if we include the Set   @AdvName = ‘%’ line then and remove the above line in red color will show for all advertisements with last 3 days status — To include all we need to give % in SQL this is a tip Declare     @AdvName Varchar(256)Set   … Read more

HeartBeat Discovery Status of specific collection of systems

select     CS.Name0,     max(AD.AgentTime) as ‘Date/Time’ from     dbo.v_AgentDiscoveries ad     JOIN dbo.v_GS_COMPUTER_SYSTEM cs on AD.ResourceID = CS.ResourceId     join dbo.v_FullCollectionMembership FCM on FCM.ResourceID = CS.ResourceId Where     AgentName = ‘Heartbeat Discovery’     and FCM.CollectionID = ‘SMS00001’ Group by     CS.Name0

To get ride of IIS Webdav issue

Most of the time some or other application extension would be blocked because of IIS Webdav Settings issue, to stop filtering in IIS Webdav we can change the setting at the site level, i.e., open inetmgr/ IIS Console and chose the server name and in the right side we need to choose the “WebDav Authoring … Read more

PXE error: PXE-T01:File not Found & PXE-E3B: TFTP Error – File Not Found

  You might get the below error..     The above problem will come When you don’t Have the files in DriveLetter:RemoteInstallSMSBoot   In fact the below article address the issue, However I have approached in different way as just copy the Missing files & folders from other Remote Install Folder and past on the Problem … Read more

AD computer Numbers vs SCCM Computer Numbers

read here more https://smsug.ca/blogs/garth_jones/archive/2008/12/03/how-to-add-ad-data-to-configmgr-reporting.aspx AD it just another database, just like SQL server is. With that in mind there is nothing stopping you from using SQL to link to AD to give you data about your AD environment! 1) Create Linked Server using SSMS exec master.dbo.sp_addlinkedserver ‘ADSI’, ‘Active Directory Service Interfaces’, ‘ADSDSOObject’, ‘<DC Name FQDN>’ … Read more

ClientIDManagerStartup.log Error: 0x80040225 & Error 3

Failed to send registration request message. Error: 0x80040225 also when you see in the error 3 in ClientIDManagerStartup log RegTask: Server rejected registration request: 3    ClientIDManagerStartup    26/01/2012 1:07:43 AM    7904 (0x1EE0)   You might also see (not in all cases) in ccmexec.log System task ‘ClientRegistrationStartup’ returned error code 0x80040222.    CcmExec    26/01/2012 1:10:03 AM    7904 (0x1EE0) … Read more

Wanna Drive to SCCM 2012

here are the Virtual labs from MS System Center 2012 TechNet Virtual Lab: System Center 2012 Configuration Manager: Application Management TechNet Virtual Lab: System Center 2012 Configuration Manager: Content Management TechNet Virtual Lab: System Center 2012 Configuration Manager: Managing Clients TechNet Virtual Lab: System Center 2012 Configuration Manager: OSD Bare Metal TechNet Virtual Lab: System … Read more

How to change the SCCM Client Log files size to Max value that you want

Sometimes or other we might need to retain the max size of log files for reading/analyzing. Here are some useful info………… in this regards…………. Client side reference registry For X86 systems –          HKLMSoftwareMicrosoftCCMLogging@GLOBAL For X64 systems –          HKEY_LOCAL_MACHINESOFTWAREWow6432NodeMicrosoftCCMLogging@GLOBAL   The reference key is Log Maxsize I tried to change manually by regedit how it is … Read more