From 99e6f9b23799ae251df81dfb9834f1b967e58dd7 Mon Sep 17 00:00:00 2001 From: dado Date: Sun, 28 Sep 2025 19:12:27 +0200 Subject: [PATCH] aggiunto istruzioni per lesecuzione dello script --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c63d780..5080a31 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,13 @@ # powershell-script -A list of PowerShell scripts for configuring and debloating Windows \ No newline at end of file +A list of PowerShell scripts for configuring and debloating Windows. + +## First run + +To allow the execution of scripts, but only for the local user, run the following command in a PowerShell window: + +```powershell +Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser -Force +``` + +Scripts downloaded from the Internet must be signed by a trusted entity, while local scripts can be executed without restrictions. This setting applies exclusively to the current user and does not affect the execution policies of other users on the system.