summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Edwards <adamed@opscode.com>2014-06-14 21:27:20 -0700
committerAdam Edwards <adamed@opscode.com>2014-10-23 10:43:05 -0700
commit29115f39b63e4094273c94015475bdc4d8ffa6a8 (patch)
tree18d3cfa5f2760b45c01dcff6ccaed516772cdca3
parent61aa58a9572f747902c5a775817bf6b9b076d098 (diff)
downloadchef-29115f39b63e4094273c94015475bdc4d8ffa6a8.tar.gz
Change default powershell_script executionpolicy to unrestricted
-rw-r--r--lib/chef/provider/powershell_script.rb2
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",