Hi,
You could try this:
$powerShell =
'C:\\Windows\\Sysnative\\WindowsPowerShell\\v1.0\\powershell.exe
-ExecutionPolicy remotesigned'
exec {'Install-service' :
command => "${PowerShell} -File
D:\\Powershell-Scripts\\scripts\\script.ps1",
path => 'C:\windows\System32',
require => File['D:\Powershell-Scripts\scripts\script.ps1'],
}
This works for us..
Regards.
On 09-10-2012 13:58, Puppet 3.0 Powershell 2.0 Set ExecutionPolicy Err
wrote:
Hi,
I am trying to set the execution policy on the Powershell 64 bit version.
exec { 'rolesfeatures1':
command => 'C:\Windows\System32\cmd.exe /c
C:\Windows\System32\WindowsPowerShell\v1.0\Powershell.exe
Invoke-Command {Set-ExecutionPolicy RemoteSigned}',
provider => windows,
logoutput => true,
}
or
exec { 'rolesfeatures1':
command => 'C:\Windows\System32\WindowsPowerShell\v1.0\Powershell.exe
Invoke-Command {Set-ExecutionPolicy RemoteSigned}',
provider => windows,
logoutput => true,
}
Both recipes do not work but when i execute the same command on the
cmd windows works just fine. Any clues?
--
You received this message because you are subscribed to the Google
Groups "Puppet Users" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/puppet-users/-/cqynD9TtAR4J.
To post to this group, send email to puppet-users@googlegroups.com.
To unsubscribe from this group, send email to
puppet-users+unsubscr...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/puppet-users?hl=en.
--
You received this message because you are subscribed to the Google Groups "Puppet
Users" group.
To post to this group, send email to puppet-users@googlegroups.com.
To unsubscribe from this group, send email to
puppet-users+unsubscr...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/puppet-users?hl=en.