image

How to Send Email Notifications When PING Fails

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

image

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

image

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

image

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