I have a power shell script that runs to stop services, 'stop / terminate process' , delete 2 files and then restart.
I can run this script perfect on my Windows 10 64 Bit Host Machine - with ZERO issues. I try to run it in my Virtual Machines and I get the error
cannot be loaded because running scripts is disabled on this system. For more information, see about_Execution_Policies at https:/go.microsoft.com/fwlink/?LinkID=135170
SO just for giggles I went to see my group policies and they are not configured on either machine.
Administrative Templates > Windows Components > Windows PowerShell Not Configured.
So why the issue on the virtual machine and not in my host ?
EDIT Ran Get-ExecutionPolicy and also Get-ExecutionPolicy-List on VM Restricted
MachinePolicy Undefined
UserPolicy Undefined
Process Undefined
CurrentUser Undefined
LocalMachine Undefined
Ran it on my Host
Scope ExecutionPolicy
----- ---------------
MachinePolicy Undefined
UserPolicy Undefined
Process Undefined
CurrentUser Undefined
LocalMachine Unrestricted
I do not know how my local machine was changed - software installation ??
get-executionpolicy
command on one of those VMs? If the output is anything other than RemoteSigned, Unrestricted, or Bypass, that could be your issue. – AdminOfThingsRestricted
is the default PowerShell execution policy. – Bill_Stewart