Questions tagged [executionpolicy]

A security setting for Windows PowerShell that enables you to determine which Windows PowerShell scripts (if any) will be allowed to run on your computer.

81 questions
0
votes
0 answers

How to properly manage Windows Execution Policy

I generally dont worry myself with security policies on my local machine. So for scripts that run locally, I usually set the windows execution policy to something really permissive. With my new machine, I wanted to know if there is an actual way I…
JakeHova
  • 1,189
  • 2
  • 15
  • 36
0
votes
2 answers

Powershell closing automatic when running .ps1 file

I'm trying to create this .ps1 file: see the full .ps1 markup # Definieer het pad waar de bestanden worden gekopieerd $sourcePath = "C:\Users\Mr.Fox\AppData\Local\Hogwarts Legacy\Saved" # Definieer het pad waar de bestanden naartoe worden…
0
votes
1 answer

.PS1 files not digitally signed

I'm trying to code in flutter and got an error message saying it cant be loaded because of a ps1 file not being digitally signed. I googled that error and saw it could be an execution policy error, I changed it to unrestricted and I get a message…
0
votes
1 answer

SQL Server job can't run PowerShell because "scripts execution disabled"

I upgraded a Windows Server 2012 to 2019, but kept the SQL Server (110) My sql agent jobs stopped working, the ones using PowerShell commands. I get the error message A job step received an error at line 1 in a PowerShell script. The corresponding…
Leif Neland
  • 1,416
  • 1
  • 17
  • 40
0
votes
1 answer

How to run PowerShell cmdlets from custom PS modules when deploying a new Azure VM?

Is it possible to install a custom PowerShell module in Azure VM post-deployment task and run PS cmdlets from that module in this task? I have a Bicep template that deploys a new Windows Azure VM. The template has a…
bahrep
  • 29,961
  • 12
  • 103
  • 150
0
votes
1 answer

Execution Policy Error while executing Powershell script in C# Web API

I am getting below error while executing powershell script. This error is coming when I am trying to import a module - File C:\Program Files\WindowsPowerShell\Modules\Az.Accounts\2.10.3\Az.Accounts.psm1 cannot be loaded because running scripts is…
0
votes
0 answers

PowerShell, what Set-ExecutionPolicy is required for right-click "Run with PowerShell"

Sometimes, when I open a script by running from right-click "Run with PowerShell", I get this: Execution Policy Change The execution policy helps protect you from scripts that you do not trust. Changing the execution policy might expose you to the…
YorSubs
  • 3,194
  • 7
  • 37
  • 60
0
votes
0 answers

Problem to change the Windows policy of execution in PowerShell

I try to run the command ng in a PowerShell, but systems require that the script must be signed. I try to change my policy of execution. This is my current configuration Get-ExecutionPolicy -List: Scope ExecutionPolicy -----…
0
votes
1 answer

ExecutionPolicy is being asked everytime for running powershell script

Facing small yet hectic issue because of execution policy. A Powershell script was written to download SharePoint files using "sharepointclientcomponents". But everytime we are executing it, an error is being thrown saying "Not Digitally Signed".…
0
votes
0 answers

Vscode terminal lags only during first run of program

Bought a new, more powerful Windows system and installed Vscode on it. To my surprise, running basic Cpp files was much more slow on it. After some investigation here are my observations about the issue - The lag is very prominent on the first run…
mr.loop
  • 818
  • 6
  • 20
0
votes
1 answer

While installing npm package into visual studio code problem

I have used the command to install npm package into my visual studio code for that, fire a command into my terminal, npm install -g create-react-app but, I am getting errors.enter image description here
0
votes
0 answers

How do I elevate a PowerShell script when run from Go?

I am trying to execute a .ps1 script that I made from GoLang. In order for the script to work I need to change the execution policy to Unrestricted. In order to set that I need PowerShell admin rights. Below is my code: package main import ( …
0
votes
0 answers

Script Execution Policy Error when running PS Command in C# Application from Visual Studio 2019

This issue has been driving me nuts for a while and I can't figure it out. I have the following C# code: class Program { static void Main() { PowerShell ps = PowerShell.Create(); ps.AddCommand("Get-StartApps"); …
Dalian
  • 1
  • 1
0
votes
0 answers

How can change ExecutionPolicy in Powershell,how can solve this error

scrrenshot I want to change the execution policy for create virtual env in python ,screenshot of the error, how can solve it
0
votes
1 answer

Cannot activate virtual environment in VSCode, despite updated ExecutionPolicy

I am trying to set up a virtual environment in VSCode. For this I have created a folder 'newproject' using -m venv newproject in GitBash. The problem is that I cannot activate the virtual environment because running scripts is disabled on this…