yep now Microsoft(R) System Center Configuration Manager 2007 Dashboard

      SMS reportsadded Asset and other reports to the collectionsSCCM reports added SQL Server Reporting services added to enchance the reports and now what??? yep now Microsoft® System Center Configuration Manager 2007 Dashboard About the Configuration Manager Dashboard IT Challenges IT administrators and IT support staff need easier access to key information about … Read more

Powershell Command R

In Ps you used some commands and you want to recall your last used command, then simply type "r" without codes, that's all it will repeat the last command——————-Thanks, Pablo Picasso  – "Computers are useless. They can only give you answers."

opps!! I forgot my basics…Keyboard Symbols

The following chart displays the character symbols, name and Latin-1 number on a standard keyboard in their approximate position on the keyboard. Most characters from any Roman based language can be created on any computer using the American Standard Code for Information Interchange or ASCII using a single byte. Most computers and software also recognized … Read more

PowerShell: File cannot be loaded because the execution of scripts is disabled on this system error in PowerShell

File cannot be loaded because the execution of scripts is disabled on this system error in PowerShell SOLUTION: The reason for this error is the security setting on your pc that does not allow you to execute a script.  This is the so-called Execution Policy. By default, the Execution Policy is set to Restricted. This … Read more

ADST and AD Daily health Checks

 Active Directory Snapshot Tool (ADST) ADST tools is the one like MBSA it checks everything about AD healthchecks. Below are the complete tools for AD health checks Test Frequency AD Convergence Daily DCDiag – General Daily FRS Convergence Daily Performance Info Daily Replication Status Daily Account Policies Weekly Backup Status Weekly Database Info Weekly DCDiag … Read more

VBSCRIPT FILE VERSION ON LIST OF SYSTEMS TO EXCEL

Set Fso = CreateObject("Scripting.FileSystemObject") Set InputFile = fso.OpenTextFile("MachineList.Txt") Do While Not (InputFile.atEndOfStream) strComputer = InputFile.ReadLine Set objExcel = CreateObject("Excel.Application") objExcel.Visible = True objExcel.Workbooks.Add intRow = 2objExcel.Cells(1, 1).Value = "System Name" objExcel.Cells(1, 2).Value = "Version" Set objWMIService = GetObject("winmgmts:" & strComputer & "rootcimv2") Set colFiles = objWMIService.ExecQuery _    ("Select * from CIM_Datafile Where Name = 'c:windowssystem32mshtml.dll'") … Read more

VBSCRIPT FOR FILE VERSION CHECK

  Set Fso = CreateObject("Scripting.FileSystemObject") Set InputFile = fso.OpenTextFile("MachineList.Txt") Do While Not (InputFile.atEndOfStream) strComputer = InputFile.ReadLine   Set objWMIService = GetObject("winmgmts:" & strComputer & "rootcimv2") Set colFiles = objWMIService.ExecQuery _    ("Select * from CIM_Datafile Where Name = 'c:windowssystem32driverstdx.sys'")For Each objFile in colFiles    Wscript.Echo objFile.Version &" " & strComputer         'Wscript.Echo "Version: " & strComputer … Read more

AD quetions

These Days I looked at Interview qutions and i found below will be usefull for entry level, if any one intrested about interview quetion for SCCM I can give some of them…. Question 1:- What is Active Directory?Answer:-AD is called Active Directory. Active Directory is basically a directory service that is used in a windows … Read more

MOF Example – END – END

  Client_UserProfileSize.MOF :—–   #pragma namespace (“\.rootcimv2”)#pragma deleteclass(“Win32Reg_UserProfileSize”,NOFAIL)[ dynamic,   provider(“RegProv”),  ClassContext(“local|HKEY_LOCAL_MACHINESOFTWAREDesktopOptimizationUserProf”)]class Win32Reg_UserProfileSize{    [key]     string    Profile;    [PropertyContext(“Application Data”)]                string    ApplicationData;    [PropertyContext(“Desktop”)]                string    Desktop;    [PropertyContext(“My Documents”)]                string    MyDocuments;    [PropertyContext(“Local Settings”)]                string    LocalSettings;     [PropertyContext(“ScriptRunOn”)]           string    ScriptRunOn;      [PropertyContext(“TotalSize”)]        string    TotalSize;     [PropertyContext(“RECYCLER”)]        string    RECYCLER;};     Server_side_sms_MOF .MOF :—   [ … Read more