SidConversion.psd1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
@{ Author='almaceleste' Copyright='GNU Affero GPL v3 (ɔ) 2020 almaceleste' Description='this module contains the cmdlets to convert the SID (security identifier) of a Windows user or group account to the name of this account and backward' DotNetFrameworkVersion='2.0' GUID='edafd5e9-e2db-42d5-b850-aa748a4dbbc4' HelpInfoURI = 'https://github.com/almaceleste/sidconversion/blob/master/README.md' ModuleVersion='0.1.1' PowerShellVersion='3.0' PrivateData = @{ PSData = @{ LicenseUri='https://github.com/almaceleste/sidconversion/blob/master/LICENSE' ProjectUri='https://github.com/almaceleste/sidconversion' ReleaseNotes=@' ## 0.1.1 minor fixes: - clarified description - fixed some orthographic - corrected and added urls - added dependencies - added tags and other system info ## 0.1.0 initial upload to GitHub and PowerShell Gallery '@ Tags=@( 'account', 'conversion', 'convert', 'domain', 'group', 'identifier', 'local', 'principal', 'security', 'sid', 'string', 'user', 'well-known', 'windows') } } RootModule='SidConversion.psm1' AliasesToExport=@('cfsid','ctsid') CmdletsToExport=@( 'ConvertFrom-Sid', 'ConvertTo-Sid') } |