Answers for "https:// www.rtpsug.com"

0

https:// www.rtpsug.com

316E23FF-9546-46BB-AB06-729FF2058E36
Posted by: Guest on May-10-2021
0

https:// www.rtpsug.com

function GetGpoGuids {
    param (
        $LinkedGpos
    )

    $RegexPattern = '[A-Z0-9]{8}-[A-Z0-9]{4}-[A-Z0-9]{4}-[A-Z0-9]{4}-[A-Z0-9]{12}'
    
    foreach ($ou in $LinkedGpos) {
        ($ou | Select-String $RegexPattern).Matches.Value
    }
}
Posted by: Guest on May-10-2021
0

https:// www.rtpsug.com

function GetGpoFromGuid {
    param (
        $GpoGuid
        ,
        $GpoSearchBank
    )
    $GpoSearchBank.Where({$_.Id -eq $GpoGuid})
}
Posted by: Guest on May-10-2021
0

https:// www.rtpsug.com

cn={316E23FF-9546-46BB-AB06-729FF2058E36},cn=policies,cn=system,DC=your,DC=domain,DC=com
Posted by: Guest on May-10-2021

Browse Popular Code Answers by Language