Skip to main content

Posts

Showing posts from September, 2015

Hardware Inventory last scanned

SELECT SYS.Netbios_Name0 as 'Computer Name', SIS.SMS_Installed_Sites0 as 'SMS Site', WS.LastHWScan, DATEDIFF(day,WS.LastHWScan,GETDATE()) as 'Days Since HWScan' FROM v_GS_WORKSTATION_STATUS WS INNER JOIN v_R_System SYS ON WS.ResourceID = SYS.ResourceID INNER JOIN v_RA_System_SMSInstalledSites SIS ON WS.ResourceID = SIS.ResourceID WHERE SYS.Client_Type0 = 1 AND SYS.Active0 = 1 AND WS.LastHWScan < DATEADD([day],+1,GETDATE())

scvmm pre-requsites

Pre-reqs: Service account Service account should have local admin privileges Service account should have access in VMMKKM Container Service account and  VMMKKM Container should be on same domain SQL native Client Cluster name should have access on SCVMM name (CNO should be properties of VCO security and full control) SCVMM service name and should have static IP Service account should have SQL direct access , kind of  DB owner access Always on should be off incase SQL DB already pre-staged (always on is a HA solution for the sql DB) Use sql port 1433 Use all default ports Logon service group - secpol.msc - should have access to service account 

Pull Dp concept

When a package is distributed to a PullDP, DistMgr creates a PkgXferMgr job and added to the queue. - PkgXferMgr processes the job and creates a PullDP notification in the PullDPs WMI. - PullDP reads the notification and starts the download from a assigned Standard DP based on priority. - Once the notification is written, PkgXferMgr monitors the job for next 10 hours (max value hardcoded). Every 60 mins. - If the status is not received from the PullDP, it will mark the distribution as Failed and it creates a Status Message and DistMgr processes the message. - if a package is successfully downloaded in the PullDP, even after it exceeds the 10 hours, it will send the status to MP and it will drop a file in Distmgr.box. - DistMgr will check the existing status in the PkgStatus table. - Since the PkgXferMgr already dropped a failed status, it will ignore the status which has been sent by PullDP. - So the status will stay as failed. But content is distributed. However clients won’t work d

SCCM 2012 Application Concepts

SCCM 2012 Application Concepts   Application An application is intelligent software that knows if a user is authorized to use it on a particular device, if that device can run it and how it should be made available to the user on that device.  An application in SCCM 2012 is what a package and program(s) is in SCCM 2007.  You can still use the old package-program in SCCM 2012 to deploy software but you won't take advantage of the intelligence in Applications. Deployment A deployment in SCCM 2012 is what an advertisement is in SCCM 2007.  A deployment is used to deploy an application.  You can indicate the purpose of a deployment as  Required  and  Available .  Think of  Required  as the purpose of a mandatory assignment in an SCCM 2007 advertisement.  Think of  Available  as the purpose of an optional advertisement in SCCM 2007.  You can configure two actions for a deployment:  Install  and  Uninstall . Deployment Type A Deployment Type is part of an Application and provides inform