About 57 results
Open links in new tab
  1. How to enable execution of PowerShell scripts? - Super User

    Start Windows PowerShell with the "Run as Administrator" option. Only members of the Administrators group on the computer can change the execution policy. Enable running unsigned scripts by entering:

  2. powershell - How to fix "running scripts is disabled on this system ...

    Nov 1, 2020 · In powershell # To check the current execution policy, use the following command: Get-ExecutionPolicy # To change the execution policy to Unrestricted, which allows running any script …

  3. How to enable PowerShell script execution? - Super User

    May 7, 2020 · How to enable PowerShell script execution? Ask Question Asked 5 years, 9 months ago Modified 4 years, 7 months ago

  4. PowerShell says "execution of scripts is disabled on this system."

    Oct 28, 2010 · I am trying to run a cmd file that calls a PowerShell script from cmd.exe, but I am getting this error: Management_Install.ps1 cannot be loaded because the execution of scripts is disabled on …

  5. windows - How to run a PowerShell script - Stack Overflow

    The MSDN/Technet URL now redirects to a page saying "The Windows PowerShell 1.0 Owner’s Manual has been retired. For the most up-to-date Windows PowerShell content, go to Using Windows …

  6. How do you successfully change execution policy and enable …

    Jan 3, 2015 · Expand it and navigate to Computer Configuration -> Administrative Templates -> Windows Components. Then to Windows PowerShell. So select Turn on Script Execution. Change …

  7. PowerShell bug “execution of scripts is disabled on this system.”

    Feb 20, 2019 · Get-ExecutionPolicy -List You should compare the command above on the working system and the non-working system. Your issue is likely be the execution policy setting for the …

  8. Disable/Enable powershell with reg key - Stack Overflow

    Sep 2, 2016 · I want to disable/enable powershell with reg key (if it is possible) to execute in cmd For example. If I want to disable/enable WSH, simply i run in cmd with privileged: :: Disable WSH reg …

  9. powershell - Visual studio code cmd error: Cannot be loaded because ...

    May 19, 2019 · Inside of visual studio code, I'm trying to execute a script.bat from the command line, but I'm getting the following error: File C:\Theses_Repo\train-cnn\environment\Scripts\activate.ps1 …

  10. Why are my PowerShell scripts not running? - Stack Overflow

    Aug 14, 2008 · Only individual commands may be run. Set-ExecutionPolicy AllSigned <-- Will allow signed powershell scripts to run. Set-ExecutionPolicy RemoteSigned <-- Allows unsigned local script …