Les-El / Ollm-Bridge

Easily access your Ollama models within LMStudio
The Unlicense
49 stars 4 forks source link

Extra powershell commands in Windows #2

Closed nuttiplutt closed 4 days ago

nuttiplutt commented 2 months ago

Hello, your script worked perfectly, but I had some problems running the script in PowerShell initially since it is unsigned. Here is how it was solved with the help of AI, of course:

If you want to allow all scripts, you can use:

Set-ExecutionPolicy -ExecutionPolicy Unrestricted

Run Your Script Again: Now, try running your script again:

 .\Ollm_Bridge_v0.6.ps1

Important Note Changing the execution policy can expose your system to potential security risks. It’s generally recommended to revert to a more restrictive policy after running your script:

Set-ExecutionPolicy -ExecutionPolicy Restricted
Les-El commented 4 days ago

Thanks!