/CustomPowershell

Customize Your Powershell like Linux :)

Primary LanguagePowerShell

CustomPowershell

This repository contains a PowerShell script named run.ps1 designed to customize your Powershell.

winfetch_command ls_command

How to use it

Download the repository

  • 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.

Run the script

  • Make sure you have PowerShell installed on your system.

Important ! Before running the script :

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