How to Export Folder Permissions as an Excel CSV file format and use it for comparison or any other purpose then here are the simple steps on how we can achieve it. System administrator as part of the daily tasks they work on folder operations like copying, moving and deleting the folders, when we have to maintain the same permission of source … [Read more...] about Powershell Folder Permission
Scripts
Unintall notepad++ using Powershell script on remote computers
Using the simple Powershell script we can uninstall notepad++ and reinstall, let's discuss how to write the code. IT administrator has to upgrade software's when there is a new release or when it has become obsolete, it is easy to upgrade when there is only one computer to upgrade any software however when there are hundreds and thousands of … [Read more...] about Unintall notepad++ using Powershell script on remote computers
How to export Active Directory objects
How to export Active Directory objects like computers, users, AD groups and printers information can be exported to an Excel CSV file, here are the simple code helps to achieve the same. System administrator as part of the daily tasks they work on active directory object when one wants to export all the AD objects to a CSV file with a PowerShell … [Read more...] about How to export Active Directory objects
Get powershell version | on a single | multiple remote Computers
Get Powershell version | on a single | multiple remote computers using a simple Powershell code to get the version. There are 3 ways you can check the PowerShell version that is installed on your computer, let's pull the version information using these 3 methods. 1. $PSVersinTable This is a default variable gives you the PowerShell version … [Read more...] about Get powershell version | on a single | multiple remote Computers
How to find password locked out users in Active Directory
This article explains how to find a password locked out users list and export it as an excel file and use it for unlocking or any other purpose using a Powershell script. Where is a need to pull out the report of password locked out users list in the active directory then you can get the list using a simple Powershell script available … [Read more...] about How to find password locked out users in Active Directory
PowerShell Basic Scripts
Powershell Basic Scripts, before we learn Powershell Basic scripts, first we need to understand the script execution policy. What does it mean, Powershell console or window has 4 main execution policies for any script to run. Here are the execution policies. AllSigned if the is execution policy is set then all the scripts run, however, all … [Read more...] about PowerShell Basic Scripts