This repository contains a PowerShell script named run.ps1
designed to customize your Powershell.
- Clone this repository on your local machine using the following command :
git clone https://github.com/Lindwen/CustomPowershell.git
or by downloading the code as a ZIP file and extracting it on your machine.
- Make sure you have PowerShell installed on your system.
Before running this script, you need to change the execution policy of PowerShell.
To do so, run the following commands in PowerShell as an administrator.
Get-ExecutionPolicy # Remember the result, it's your current script execution policy
Set-ExecutionPolicy unrestricted # Allow the execution of unsigned scripts, since this one is not signed.
# Run the script, as indicated below.
Set-ExecutionPolicy <result of Get-ExecutionPolicy> # Return to the old script execution policy.
- Navigate to the directory where you cloned or extracted this repository.
- Run the run.ps1 script using the following command :
.\run.ps1