Create custom name self signed certificate using PowerShell
During one of my client requirement, we received request for creating self-signed SSL certificate on IIS server for their play ground environment. so after analyzing i had found it can be achievable using the New-SelfSignedCertificate
Powershell : How to get Application and Systems Logs From Event Viewer
I would like to show how-to work with events under Applications and system Logs using Powershell. Whether it’s an error report, a warning, or just an informational log, one of the most common places for
Add Binding To IIS – PowerShell
Hi Guys, today we are going to disuses about how to add the binding to IIS using Powershell. In most case, during the deployments, the one of the painful activity is adding binding for new
Import-Module : The specified module ‘ServerManager’ was not loaded because no valid module file was found in any module directory
Error: Import-Module : The specified module ‘ServerManager’ was not loaded because no valid module file was found in any module directory. While importing a module you may receive an error message : [crayon-672be0960ce8f223590844/] Reason and
Powershell Script for Website Availability Monitoring with Excel Report as output
In our previous post we already discussed about "How to check response code from a website using PowerShell" by using single URL in example. Here let we discuss how to read the list of URLs from
How to get the array as input using Powershell
To read an array into Read-Host (get the array as input), you would need to put it in a loop because anything entered into Read-Host will be interpreted as a string. To make output in
How to move files from one location to another location using PowerShell
In this article, Let me show you how to move files from one location to another location using PowerShell script. The Move-Item cmdlet moves an item, including its properties, contents, and child items, from one location
How to check response code from a website using PowerShell
In this post we will discuss about how to check the response code from a website. In this article, we're going to cover how to build a PowerShell function that will query a specific URL