Troubleshooting:Add Trace32.exe to BOOT File "boot.wim" to read the logs in trace32

This tip is great for incorporating Trace32.exe to your boot.wim for troubleshooting. Create folders and populate with file(s) Create a folder on your SCCM server called Extrafiles, put two blank folders in there called windowssystem32 copy the trace32.exe file to the system32 folder you just created above (you can copy more than this if you … Read more

Troubleshooting:Add Trace32.exe to BOOT File “boot.wim” to read the logs in trace32

This tip is great for incorporating Trace32.exe to your boot.wim for troubleshooting. Create folders and populate with file(s) Create a folder on your SCCM server called Extrafiles, put two blank folders in there called windowssystem32 copy the trace32.exe file to the system32 folder you just created above (you can copy more than this if you … Read more

Troubleshooting:Ride of PXE Boot aborted

Troubleshooting:Ride of Pxeabord message The first approch would be ….Cleare the PXE advertisement from the collection or by selecting the computer " Clear Last PXE Advertisement" If you still get the abort message like below then… Downloaded WDSNBP Architecture: x64 The details below show the information relating to the PXE boot request for this computer. … Read more

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