EguibarIT PowerShell Module contains 35 public functions that aid on the building of the Delegation Model / Tier Model / RBAC Model
To check the available functions on EguibarIT module, jut run:
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 50 51 52 53 54 55 56 |
# To get the module information PS C:\> Get-Module -Name EguibarIT ModuleType Version Name ExportedCommands ---------- ------- ---- ---------------- Script 1.0.21 EguibarIT {Add-AdGroupNesting, ConvertTo-IPv4MaskBits, ConvertTo-IPv4MaskString, ConvertTo-WmiFilter...} # And to check the Functions from the module PS C:\> Get-Command -Module EguibarIT CommandType Name Version Source ----------- ---- ------- ------ Function Add-AdGroupNesting 1.0.21 EguibarIT Function ConvertTo-IPv4MaskBits 1.0.21 EguibarIT Function ConvertTo-IPv4MaskString 1.0.21 EguibarIT Function ConvertTo-WmiFilter 1.0.21 EguibarIT Function Get-AdObjectType 1.0.21 EguibarIT Function Get-AdSiteLinks 1.0.21 EguibarIT Function Get-AdSites 1.0.21 EguibarIT Function Get-AdSubnets 1.0.21 EguibarIT Function Get-IniContent 1.0.21 EguibarIT Function Get-OsBuild 1.0.21 EguibarIT Function Get-RandomHex 1.0.21 EguibarIT Function Grant-NTFSPermissions 1.0.21 EguibarIT Function Import-MyModule 1.0.21 EguibarIT Function IsUniqueOID 1.0.21 EguibarIT Function New-AdDelegatedGroup 1.0.21 EguibarIT Function New-AGPMObjects 1.0.21 EguibarIT Function New-AreaShareNTFS 1.0.21 EguibarIT Function New-CaObjects 1.0.21 EguibarIT Function New-CentralItOu 1.0.21 EguibarIT Function New-DelegateAdGpo 1.0.21 EguibarIT Function New-DelegateSiteOU 1.0.21 EguibarIT Function New-DfsObjects 1.0.21 EguibarIT Function New-DHCPobjects 1.0.21 EguibarIT Function New-EitAdSite 1.0.21 EguibarIT Function New-ExchangeObjects 1.0.21 EguibarIT Function New-LAPSobjects 1.0.21 EguibarIT Function New-LocalLogonTask 1.0.21 EguibarIT Function New-Template 1.0.21 EguibarIT Function New-TemplateOID 1.0.21 EguibarIT Function New-TimePolicyGPO 1.0.21 EguibarIT Function New-WsusObjects 1.0.21 EguibarIT Function Out-IniFile 1.0.21 EguibarIT Function PublishCert 1.0.21 EguibarIT Function Revoke-Inheritance 1.0.21 EguibarIT Function Revoke-NTFSPermissions 1.0.21 EguibarIT Function Set-AdAclDelegateComputerAdmin 1.0.21 EguibarIT Function Set-AdAclDelegateGalAdmin 1.0.21 EguibarIT Function Set-AdAclDelegateUserAdmin 1.0.21 EguibarIT Function Set-AdAclLaps 1.0.21 EguibarIT Function Start-AdCleanOU 1.0.21 EguibarIT Function Start-AdDelegateSite 1.0.21 EguibarIT Function Test-IPv4MaskString 1.0.21 EguibarIT Function Test-RegistryValue 1.0.21 EguibarIT |
Or if you need specific help of what a function is doing, you can type:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# Get general help on New-CentralItOu PS C:\> get-help New-CentralItOu NAME New-CentralItOu SYNTAX New-CentralItOu [-ConfigXMLFile] <string> [[-CreateExchange]] [[-CreateDfs]] [[-CreateCa]] [[-CreateAGPM]] [[-CreateLAPS]] [[-CreateDHCP]] [[-DMscripts] <string>] [-WhatIf] [-Confirm] [<CommonParameters>] ALIASES None REMARKS None |