SCCM 2007 Right Click Tools latest version available, one can download from the below link

SCCM 2007 Right Click Tools latest version available, one can download from the below link   https://myitforum.com/cs2/blogs/rhouchins/archive/2008/04/09/sccm-right-click-tools.aspx   All the advantages from the above link are below( actual source is above link)   1.       Most of the tools that were included in the original SMS Console Additions V1.4 2.       The ability to see the computer … Read more

SCCM Query for SCCM Clients Model and Manufactures Name

Need to extract SCCM Clients Model and Manufactures Name?   You have to dig the Computer_System_DATA Table. Here are two shared SQL Querys.   Select DISTINCT Model0 from Computer_System_DATA The above one will show all the Models The below Query will show everything in the Database Select * from Computer_system_data ——————-Thanks,https://sccm07.blogspot.com/

How to Install Configuration Manager Clients Using Software Update Point Based Installation

Step:1 To configure an Active Directory Group Policy object to specify the software update point for client installation and software updates Using an editor such as Windows Group Policy editor, open a new or existing Group Policy object. In the Group Policy editor, navigate to Computer Configuration / Administrative Templates / Windows Components / Windows … Read more

SCCM Client failes with Software Updates: WUAHandler.log Error = 0x80070002

SCCM Client failes with Software Updates:     Issue:- Software updates failes without installing when you check the WUAHandler.log file you will get below erro OnSearchComplete – Failed to end search job. Error = 0x80070002. WUAHandler 1/28/2009 3:00:15 PM 3380 (0x0D34)Scan failed with error = 0x80070002. WUAHandler 1/28/2009 3:00:15 PM 3380 (0x0D34)   Solution: Check will you able to connect wmi … Read more

SCCM OSD All Log Files

Operating System Deployment Log Files   The following table lists and describes the operating system deployment log files. Log File Name Description CCMSetup.log Provides information about client-based operating system actions. CreateTSMedia.log Provides information about task sequence media when it is created. This log is generated on the computer running the Configuration Manager 2007 administrator console. … Read more

Useful DNS, DHCP and WINS command-line operations

Useful DNS, DHCP and WINS command-line operations   The commands below are a subset of the complete command list found in Useful command-lines, and are command-line operations for core network services – DNS, WINS and DHCP. Most of these commands are queries, useful for once-off or repeated information gathering for reporting, trending, troubleshooting or diagnostics. … Read more

SMS / SCCM Cleint health find Script

here is the Batch file script for SCCM / SMS Clients health along with Last hardware scan report sent time and lastheartbeat time stamp it will show you in the command window this will help you to know the status of Client agent.   ==================================================================================== @echo off@echo Client Version  Last Hardware Inventory  Hours Since Last HINVosql.exe -S … Read more

Active Directory Scripts

Active Directory Scriptinghttps://www.microsoft.com/technet/scriptcenter/guide/sas_ads_overview.mspx?mfr=true ——————————————————————————————– rem this code creates a user account with the common name MyerKen: Set objOU = GetObject("LDAP://ou=Management,dc=NA,dc=fabrikam,dc=com")Set objUser = objOU.Create("User", "cn=MyerKen") objUser.Put "sAMAccountName", "myerken"objUser.SetInfo Attribute Default Setting pwdLastSet User must change password at next logon userAccountControl Password Not Required userAccountControl Account Disabled ———————————————————————Setting a User Account Password Set objUser = GetObject _("LDAP://cn=MyerKen,ou=Management,dc=NA,dc=fabrikam,dc=com") … Read more

SCCM Client Installation Script:– batch file program

SCCM Client Installation Script:–   here is my SCCM Client Installation batch file script.   ================================================================================================================================================================================ ECHO *********** %1 runing X copy kil.exe xcopy /y kill.exe %1admin$ psexec %1 -c  kill.exe "kill.exe ccmexec.exe" ECHO *********** %1 Copy dependent files to client admin$ xcopy /y ccmsetup.exe %1admin$ ECHO *********** %1 Uninstall SCCM Cleint psexec %1 -c  kill.exe … Read more

SCCM Client: Patch Managemnt to Force Client Deployement on remote systems

To Force Client Deployment ================================================================================================================================================================       ' Set the required variables.     actionNameToRun = "Software Updates Assignments Evaluation Cycle"     ' Create a CPAppletMgr instance.    Dim oCPAppletMgr    Set oCPAppletMgr = CreateObject("CPApplet.CPAppletMgr")     ' Get the available ClientActions object.    Dim oClientActions    Set oClientActions = oCPAppletMgr.GetClientActions()     ' Loop through the available client actions. Run the … Read more