PoshCode Archive  Artifact [7c75af3990]

Artifact 7c75af3990e1e76eca84836e85df34fbc90c244919eaf8691bcc6be15c279f43:

  • File Get-PSExecutionPolicy.ps1 — part of check-in [93913f6eab] at 2018-06-10 13:11:48 on branch trunk — Get-PSExecutionPolicy.ps1 uses WMI to query remote registry for PowerShell path and exeuction policy settings. Because WMI is used works from x86 to x64 machines. (user: Chad Miller size: 1391)

# encoding: ascii
# api: powershell
# title: Get-PSExecutionPolicy
# description: Get-PSExecutionPolicy.ps1 uses WMI to query remote registry for PowerShell path and exeuction policy settings. Because WMI is used works from x86 to x64 machines.
# version: 0.1
# author: Chad Miller
# license: CC0
# x-poshcode-id: 2518
# x-archived: 2016-07-02T06:25:28
# x-published: 2011-02-24T07:50:00
#
#
#Notes
#1. x86 properites will be empty for x86 machines as this property only pertains x64 machines which have both x64 and x86 shells.
#2. If policy registry key is not present then restricted is the effective setting

param($computerName=$env:computerName)

$reg = Get-WmiObject -List -Namespace root\default -ComputerName $ComputerName | Where-Object {$_.Name -eq "StdRegProv"}

new-object psobject -property @{
ComputerName=$ComputerName;
Path=($reg.GetStringValue(2147483650,"SOFTWARE\Microsoft\PowerShell\1\ShellIds\Microsoft.PowerShell","Path")).sValue;
Policy=($reg.GetStringValue(2147483650,"SOFTWARE\Microsoft\PowerShell\1\ShellIds\Microsoft.PowerShell","ExecutionPolicy")).sValue;
x86Path=($reg.GetStringValue(2147483650,"SOFTWARE\Wow6432Node\Microsoft\PowerShell\1\ShellIds\Microsoft.PowerShell","Path")).sValue
x86Policy=($reg.GetStringValue(2147483650,"SOFTWARE\Wow6432Node\Microsoft\PowerShell\1\ShellIds\Microsoft.PowerShell","ExecutionPolicy")).sValue
}