When there is a need to monitor the set of websites on the local computer or remote server computers it's easy with a Powershell script, imagine if there are many remote computers one has to check manually then it's quite difficult for administrators. Here in this article, we explain how simple code can get any website status on local or remote … [Read more...] about Powershell script to test website status up or down on a local or remote computers
Powershell
Powershell Stop Service on Remote Computers
This article explains how to Stop a Service on any windows computer remotely using Powershell script, one can also use the same script stop the service on multiple remote computers. When you want to stop service on a desktop computer or a server we generally open the services and find the name of service and we stop if you want to do the same … [Read more...] about Powershell Stop Service on Remote Computers
PowerShell Error Execution Of Scripts Is Disabled On This System | Solution
How To Enable Powershell Execution Policy on any windows computer for Powershell scripts to work as expected, here are the steps to how to do it. When you run a PowerShell script and if it says “execution of scripts is disabled on this system”, what does it mean? It means the execution policy is set as restricted, let’s learn what are execution … [Read more...] about PowerShell Error Execution Of Scripts Is Disabled On This System | Solution
Powershell get IP Address Subnet mask DNS Servers Mac Address
This article explains how to pull IP address, subnet mask, DNS servers and Mac address of remote computers using a Powershell script. If you are working as a system admin for a large IT enterprise you may come across to pull the current IP configuration of multiple desktops computers and windows servers, when there is migration from one host to … [Read more...] about Powershell get IP Address Subnet mask DNS Servers Mac Address
Powershell Get Hotfix Installed on Multiple Computers
Here is the simple PowerShell Code that pulls the information of hotfix on multiple computers. We need to create a text file for remote computers list that we are going to query the port status, here I have created a text file named as allservers.txt and saved it in location C\temp\allservers.txt … [Read more...] about Powershell Get Hotfix Installed on Multiple Computers
PowerShell Functions
Powershell functions are the most lightweight form of Powershell command, it's a grouping of code runs against each object defined (within that code) in the script block and performs the specified action. Powershell functions help the administrator to create reusable code which acts as Powershell cmdlets. Syntax A function is defined as … [Read more...] about PowerShell Functions