PingInfoView is available to download from here: PingInfoView – Ping to multiple host names/IP addresses One of the common feature request for the PingInfoView tool is to send an email message when a ping fails. although the PingInfoView tool doesn’t have an option to send an email message, you can still do it by using the Read More
How to Fix “We Couldn’t Update the System Reserved Partition” Error on Windows 10/11
The error looks like this: We Couldn’t Update the System Reserved Partition. Cause The System Reserved Partition (SRP) may be full. The System Reserve Partition (SRP) is a small partition on your hard drive that stores boot information for Windows. Some third-party anti-virus and security apps write to the SRP, and can fill it up. Read More
How to Fix “Printer Failure” Error on HP OfficeJet Pro 8610
Error sample as below: Steps to Resolve the Printer Failure Error: Perform a Hard Reset: Check the Cartridges and Printhead: Perform a Semi-Full Reset: Follow the instructions on the video. How To Fix Hard Reset Hp OfficeJet Pro 8610 Ink System Failure
How to Drain Flea Power (Residual Static Electricity) on a HP Laptop
Press and hold the power button and volume-up f7 button for 40–50 seconds, then release it to drain the flea power (static charge.)
How to Fix Robocopy: Directory Is Not Visible on the Destination Drive
When copying from the root directory of a drive to a folder (non-root directory on a different drive), this can happen.RoboCopy may set the new directory to hidden, as it copies the system attribute of the root folder of the drive over to the new folder. You can prevent the new directory from becoming hidden by adding Read More
How to Create Folders from a CSV file by Using PowerShell
Here is a sample csv file with a title called “Organizations”. Below, please see the scripts #Crated by Summa, 2024-10-23 $file= “C:Tempfolders.csv” if (Test-Path $file) { $item=Get-Item $file Write-Output “The csv file exists. Details:” $item } else { Write-Output “The csv file does not exist.” } Read More