File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -84,6 +84,18 @@ The main goal of the project is to create a well-organized repository with tools
8484 }
8585 ```
8686
87+ - **Running scripts is disabled on this system**
88+ - Solution: Change Execution Policy
89+ ```powershell
90+ Set-ExecutionPolicy Unrestricted # Recommended for personal use
91+ Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope LocalMachine
92+ Set-ExecutionPolicy Bypass
93+ ```
94+
95+ For more information about:
96+
97+ - [Set-ExecutionPolicy](https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.security/set-executionpolicy?view=powershell-7.4)
98+
8799
88100## Contributing
89101Contributions to enhance the repository or address issues are welcome. Please open a GitHub issue or submit a pull request.
You can’t perform that action at this time.
0 commit comments