Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
PSDevOps
0.5.9
Types/PSDevOps.SecurityNamespace/ConvertFromBitmask.ps1
param
(
[int]
$Bitmask
)
@(
foreach
(
$act
in
$this
.
Actions
)
{
if
(
$Bitmask
-band
$act
.
bit
)
{
$act
.
Name
}
}
)