| Server IP : 185.208.173.17 / Your IP : 87.236.161.98 Web Server : Microsoft-IIS/10.0 System : Windows NT SRV8576125506 10.0 build 26100 (Windows Server 2016) AMD64 User : IUSR ( 0) PHP Version : 7.4.13 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Windows/System32/WindowsPowerShell/v1.0/Modules/Carbon/COM/ |
Upload File : |
# Copyright 2012 Aaron Jensen
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
function Revoke-ComPermission
{
<#
.SYNOPSIS
Revokes COM Access or Launch and Activation permissions.
.DESCRIPTION
Calling this function is equivalent to opening Component Services (dcomcnfg), right-clicking `My Computer` under Component Services > Computers, choosing `Properties`, going to the `COM Security` tab, and removing an identity from the permissions window that opens after clicking the `Edit Limits...` or `Edit Default...` buttons under `Access Permissions` or `Launch and Activation Permissions` section,
.LINK
Get-ComPermission
.LINK
Grant-ComPermission
.LINK
Revoke-ComPermission
.EXAMPLE
Revoke-ComPermission -Access -Identity 'Users' -Default
Removes all default security COM access permissions for the local `Users` group.
.EXAMPLE
Revoke-ComPermission -LaunchAndActivation -Identity 'Users' -Limits
Removes all security limit COM access permissions for the local `Users` group.
#>
[CmdletBinding()]
param(
[Parameter(Mandatory=$true)]
[string]
$Identity,
[Parameter(Mandatory=$true,ParameterSetName='DefaultAccessPermission')]
[Parameter(Mandatory=$true,ParameterSetName='MachineAccessRestriction')]
[Switch]
# Revokes Access Permissions.
$Access,
[Parameter(Mandatory=$true,ParameterSetName='DefaultLaunchPermission')]
[Parameter(Mandatory=$true,ParameterSetName='MachineLaunchRestriction')]
[Switch]
# Revokes Launch and Activation Permissions.
$LaunchAndActivation,
[Parameter(Mandatory=$true,ParameterSetName='DefaultAccessPermission')]
[Parameter(Mandatory=$true,ParameterSetName='DefaultLaunchPermission')]
[Switch]
# Revokes default security permissions.
$Default,
[Parameter(Mandatory=$true,ParameterSetName='MachineAccessRestriction')]
[Parameter(Mandatory=$true,ParameterSetName='MachineLaunchRestriction')]
[Switch]
# Revokes security limits permissions.
$Limits
)
$comArgs = @{ }
if( $pscmdlet.ParameterSetName -like 'Default*' )
{
$typeDesc = 'default security permissions'
$comArgs.Default = $true
}
else
{
$typeDesc = 'security limits'
$comArgs.Limits = $true
}
if( $pscmdlet.ParameterSetName -like '*Access*' )
{
$permissionsDesc = 'Access'
$comArgs.Access = $true
}
else
{
$permissionsDesc = 'Launch and Activiation'
$comArgs.LaunchAndActivation = $true
}
$sidAccount = Test-Identity -Name $Identity -PassThru
if( -not $sidAccount )
{
Write-Warning "Unable to find identity $Identity."
return
}
Write-Host ("Revoking {0}'s COM {1} {2}." -f $Identity,$permissionsDesc,$typeDesc)
$currentSD = Get-ComSecurityDescriptor @comArgs
$newSd = ([wmiclass]'win32_securitydescriptor').CreateInstance()
$newSd.ControlFlags = $currentSD.ControlFlags
$newSd.Group = $currentSD.Group
$newSd.Owner = $currentSD.Owner
# Remove DACL for this user, if it exists
$newSd.DACL = $currentSD.DACL |
Where-Object { $_.Trustee.SIDString -ne $sidAccount.Value } |
ForEach-Object { $_.PsObject.BaseObject }
$converter = New-Object Management.ManagementClass 'Win32_SecurityDescriptorHelper'
$sdBytes = $converter.Win32SDToBinarySD( $newSd )
$regValueName = $pscmdlet.ParameterSetName
Set-RegistryKeyValue -Path $ComRegKeyPath -Name $regValueName -Binary $sdBytes.BinarySD -Quiet
}
Set-Alias -Name 'Revoke-ComPermissions' -Value 'Revoke-ComPermission'