Powershell Add-Content command adds the data to a file, this article explains how you can use it in your scripting code and add content to the file. The PowerShell cmdlet add-content adds the content to the specified file, you can get the output of another file and add to it as … [Read more...]
Powershell Restart Multiple Computers
When there is a need to restart a remote computer then there are several ways one can restart, however, this article explains an easy method using a single PowerShell command to restart multiple remote computers, let's get started. Restart-Computer This PowerShell command … [Read more...]
How to Zip a file in Powershell
How to Zip files in Powershell, this article explains how one can zip the Powershell output, files, or logs and make them as archive somewhere for future use. When there are large files to zip or an application is generating log files every day or you want to archive Powershell … [Read more...]
Powershell get SSL certificate | Windows 10 | Server 2016 | 2012
This article explains how we can get an SSL certificate on remote windows computers or a server operating system using Powershell script, here are the simple steps one can follow and achieve the same. Windows administrators deal with many servers and desktop machines every day … [Read more...]
How to send an email from Powershell
Send emails from Powershell script, yes we can send any data as an email format using a Powershell script, if one wants to send the script output as an email then here are the steps how to do it. When you have a written script for a specific task and you want to send the output … [Read more...]