From caf8abacdce47431227341be787f2d1b9f36c29f Mon Sep 17 00:00:00 2001 From: mrsh Date: Sun, 4 Jan 2026 06:00:08 +0100 Subject: [PATCH] first commit --- Learn Powershell in Less than 2 hours.md | 35 ++++++++++++++++++++++++ README.md | 0 2 files changed, 35 insertions(+) create mode 100644 Learn Powershell in Less than 2 hours.md create mode 100644 README.md diff --git a/Learn Powershell in Less than 2 hours.md b/Learn Powershell in Less than 2 hours.md new file mode 100644 index 0000000..cc2f4db --- /dev/null +++ b/Learn Powershell in Less than 2 hours.md @@ -0,0 +1,35 @@ +# Learn Powershell in Less Than 2 hours + +## PSVersionTable + +you can see the version of powershell with the command + +```powershell +$PSVersionTable +``` + +## ExecutionPolicy + +To be able to see if you can run your Powershell scripts + +```powershell +Get-ExecutionPolicy +// Work only has administrator +Set-ExecutionPolicy remoteSigned +``` + +### Widows Powershell ISE + +To be able to write Powershell script you have a free IDE + +## Commandes + + +### Write-Host + +For writing in the console + +```powershell +Write-Host "Hello world" + +``` diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29