diff options
author | Adam Edwards <adamed@opscode.com> | 2014-06-14 21:27:20 -0700 |
---|---|---|
committer | Adam Edwards <adamed@opscode.com> | 2014-10-23 10:43:05 -0700 |
commit | 29115f39b63e4094273c94015475bdc4d8ffa6a8 (patch) | |
tree | 18d3cfa5f2760b45c01dcff6ccaed516772cdca3 | |
parent | 61aa58a9572f747902c5a775817bf6b9b076d098 (diff) | |
download | chef-29115f39b63e4094273c94015475bdc4d8ffa6a8.tar.gz |
Change default powershell_script executionpolicy to unrestricted
-rw-r--r-- | lib/chef/provider/powershell_script.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/provider/powershell_script.rb b/lib/chef/provider/powershell_script.rb index 852fe1436f..0e76cd1656 100644 --- a/lib/chef/provider/powershell_script.rb +++ b/lib/chef/provider/powershell_script.rb @@ -67,7 +67,7 @@ EOH "-NoLogo", "-NonInteractive", "-NoProfile", - "-ExecutionPolicy RemoteSigned", + "-ExecutionPolicy Unrestricted", # Powershell will hang if STDIN is redirected # http://connect.microsoft.com/PowerShell/feedback/details/572313/powershell-exe-can-hang-if-stdin-is-redirected "-InputFormat None", |