PoshCode Archive  Artifact [e982ae8136]

Artifact e982ae81360cb9f38b9cda1f171f63bf6428e0fe15c5f646be3405f4afd96bde:

  • File Convert-StringSID.ps1 — part of check-in [e0f5416020] at 2018-06-10 12:56:22 on branch trunk — Converts a string containing the SDDL SID format (e.g. ‘S-1-5-21-39260824-743453154-142223018-195717’) to a Win32_SID WMI object. Also adds a property with the base64 encoded binary SID to match the format used by some AD backup utilities. (user: tojo2000 size: 1693)

# encoding: ascii
# api: powershell
# title: Convert-StringSID
# description: Converts a string containing the SDDL SID format (e.g. ‘S-1-5-21-39260824-743453154-142223018-195717’) to a Win32_SID WMI object.  Also adds a property with the base64 encoded binary SID to match the format used by some AD backup utilities.
# version: 0.1
# type: function
# author: tojo2000
# license: CC0
# function: Convert-StringSID
# x-poshcode-id: 1072
# x-archived: 2017-01-07T16:35:19
# x-published: 2010-05-01T18:06:00
#
#
function Convert-StringSID {
<#
.Synopsis
  Takes a SID string and outputs a Win32_SID object.

.Parameter sidstring
  The SID in SDDL format. Example: S-1-5-21-39260824-743453154-142223018-195717

.Description
  Takes a SID string and outputs a Win32_SID object.
  Note: it also adds an extra property, base64_sid, the base64 representation
        of the binary SID.

.Example
PS> Convert-StringSID 'S-1-5-21-39260824-743453154-142223018-195717'

.Example
PS> $list_of_sids |
      Convert-StringSID |
      %{Write-Output "$($_.ReferenceDomainName)\$($_.AccountName)"}
MYDOMAIN\somename
MYDOMAIN\anotheraccount

.Notes
  NAME:      Convert-StringSID
  AUTHOR:    tojo2000
#Requires -Version 2.0
#>
  param([Parameter(Position = 0,
                   Mandatory = $true,
                   ValueFromPipeline = $true]
        [string]$sidstring)

  BEGIN {}

  PROCESS{
    [wmi]$obj = 'Win32_SID.SID="{0}"' -f $sidstring
    $encoded = [System.Convert]::ToBase64String($obj.BinaryRepresentation)
    $obj |
      Add-Member -MemberType NoteProperty -Name base64_sid -Value $encoded
    Write-Output $obj
  }

  END{}
}