SCCM Client SUP registry Value Check Script

To find SCCM Client have the SUP server Registry key value status   This script will check Weather the Client system is scanning properly with SUP server or not ============================================================================================================================================================================================================================================================ On Error Resume NextConst HKEY_LOCAL_MACHINE = &H80000002 Set Fso = CreateObject("Scripting.FileSystemObject") Set InputFile = fso.OpenTextFile("MachineList.Txt") Do While Not (InputFile.atEndOfStream) strComputer = InputFile.ReadLine Set objRegistry = … Read more

To enable remotely admin$ / default shares on remote systems

To enable remotely admin$ / default shares on remote systems This script will be useful to enable remotely admin$ shares ============================================================================================================================================ Set objExcel = CreateObject(“Excel.Application”)objExcel.Visible = TrueobjExcel.Workbooks.AddintRow = 2 objExcel.Cells(1, 1).Value = “Machine Name”objExcel.Cells(1, 2).Value = “Admin Share Exists” Set Fso = CreateObject(“Scripting.FileSystemObject”)Set InputFile = fso.OpenTextFile(“MachineList.Txt”)Do While Not (InputFile.atEndOfStream)strComputer = InputFile.ReadLine On Error Resume NextSet … Read more

Some of the components that are used in the client deployment process

Some of the components that are used in the client deployment process include the following: • CCMSetup.exe: Used to Install, uninstall and upgrade the SCCM 2007 client using client push installation or manual installation. It is low bandwidth aware and is the single way to launch client deployment. You also do not need to use … Read more

Outllok issue in IE7

https://mustech.net/2007/02/20/windows-vista-webmail-owa-fix-for-internet-explorer-7-five-step-fix   UPDATE: Some of you are telling me that although the MIME upgrade fixes some of the problems but you are still experiencingdifficulty when sending messages. This is most likely due to your service (company, etc.) not updating theirexchange server with the “hotfix”. “The cause of the problem is due to Internet Explorer 7 in Windows Vista no longer include support for Dynamic HTML Editing ActiveX control, and thus missing a functionality that Microsoft Exchange Outlook Web Access relies on to do HTML editing in Outlook Web Access.” … Read more

Adding registry files silently to the remote systems.

    Adding registry files silently to the remote systems.   Save to .cmd file and ejoy   ================ xcopy /y Add_SUP.reg %1admin$temppsexec %1 c:windowsregedit /s %1admin$tempAdd_SUP.reg del %1admin$tempAdd_SUP.reg   ================     ——————-Thanks,https://sccm07.blogspot.com/

WINZIP12 Silent Installation Code

WinZip Silent Installtion batch file with License file     Code:   =========== winzip12.msi /qnxcopy /y /E /I WinZip.wzmul "%AllUsersProfile%/Application DataWinZip"   ===========   Yes Life is a batch, and then you FLY   ——————-Enjoy, Paddy

Microsoft System Center Configuration Manager 2007 Exam Code 70-401

  Skills measured This exam measures your ability to accomplish the technical tasks listed in the following table. The percentages indicate the relative weight of each major topic area on the exam.     Skills measured by Exam 70-401   Deploying a System Center Configuration Manager 2007 (SCCM) Server (9 percent) Set up and configure … Read more

DCM How to Remediate Non-Compliant Computers Using Software Distribution

How to Remediate Non-Compliant Computers Using Software Distribution You can use the compliance results from a Configuration Manager 2007 configuration item or configuration baseline to dynamically populate a collection with computers that report a specific compliance state or a specific non-compliance severity level. You can then use Configuration Manager 2007 software distribution to assign a … Read more