PowerShell For Loop, ForEach, and Do While/Until Explained

One of the most fundamental functions in programming besides “If, Else” are loops. They allow you to process data or run a function until a certain condition is reached. In PowerShell, we can use different types of loops For loop, ForEach, Do While, and Do … Read morePowerShell For Loop, ForEach, and Do While/Until Explained

How to use Try, Catch, Finally in PowerShell

Errors in your PowerShell script can stop the execution of your script, but sometimes that is completely unnecessary. Try Catch blocks in PowerShell help you to handle those errors properly. Take the following example; You need to update the job titles of 20 employees. The … Read moreHow to use Try, Catch, Finally in PowerShell

Mapping a Network Drive in Windows 10 – How To

Mapping a network drive in Windows 10 sounds maybe a bit complicated, but it’s actually pretty simple. And the advantage of it is huge, no more browsing to that file server or (Synology) NAS, but with one simple click access to all shared files. We … Read moreMapping a Network Drive in Windows 10 – How To

How to Use the Ping Command – Test your network with CMD Ping

ping cmd

The ping command is one of the most used commands by IT professionals to test the network connection. With the ping cmd, we can send a small data packet to a computer, server, or another network device to check the connectivity. This ping cmd not … Read moreHow to Use the Ping Command – Test your network with CMD Ping