Capa.PowerShell.Module.PowerPack.UsrMgr.psm1
# TODO: #386 Update Get-Help for UsrMgr_AddUserToLocalGroup <# .SYNOPSIS Adds a user to a local group. .DESCRIPTION This function adds a user to a local group on the system. .PARAMETER UserName The name of the user to add to the group. .PARAMETER GroupName The name of the group to add the user to. .PARAMETER SID The SID of the group to add the user to. .EXAMPLE PS C:\> UsrMgr_AddUserToLocalGroup -UserName "JohnDoe" -GroupName "Administrators" .EXAMPLE PS C:\> UsrMgr_AddUserToLocalGroup -UserName "JohnDoe" -GroupName "S-1-5-32-544" .NOTES For more information, please visit https://capasystems.atlassian.net/wiki/spaces/CI65DOC/pages/19462456159/cs.UsrMgr+AddUserToLocalGroup #> function UsrMgr_AddUserToLocalGroup { param ( [Parameter(Mandatory = $true)] [string]$UserName, [Parameter(Mandatory = $true)] [Alias('SID')] [string]$GroupName ) $Global:cs.UsrMgr_AddUserToLocalGroup($UserName, $GroupName) } # TODO: #387 Update Get-Help for UsrMgr_ChangePassword <# .SYNOPSIS Change the password of a local user account. .DESCRIPTION This function changes the password of a local user account on the system. .PARAMETER UserName The name of the user to change the password of. .PARAMETER Password The new password of the user. .EXAMPLE PS C:\> UsrMgr_ChangePassword -UserName "JohnDoe" -Password "P@ssw0rd" .NOTES For more information, please visit https://capasystems.atlassian.net/wiki/spaces/CI65DOC/pages/19462456210/cs.UsrMgr+ChangePassword #> function UsrMgr_ChangePassword { param ( [Parameter(Mandatory = $true)] [string]$UserName, [Parameter(Mandatory = $true)] [string]$Password ) $Global:cs.UsrMgr_ChangePassword($UserName, $Password) } # TODO: #388 Update Get-Help for UsrMgr_CreateLocalUser <# .SYNOPSIS Create a local user account. .DESCRIPTION This function creates a local user account on the system. .PARAMETER UserName The name of the user to create. .PARAMETER FullName The full name of the user to create. .PARAMETER Password The password of the user to create. .PARAMETER Description The description of the user to create. .PARAMETER PasswordNeverExpire Set password never expire, default is $true. .EXAMPLE PS C:\> UsrMgr_CreateLocalUser -UserName "JohnDoe" -FullName "John Doe" -Password "P@ssw0rd" .EXAMPLE PS C:\> UsrMgr_CreateLocalUser -UserName "JohnDoe" -FullName "John Doe" -Password "P@ssw0rd" -Description "This is a test user." .EXAMPLE PS C:\> UsrMgr_CreateLocalUser -UserName "JohnDoe" -FullName "John Doe" -Password "P@ssw0rd" -PasswordNeverExpire $false .NOTES For more information, please visit https://capasystems.atlassian.net/wiki/spaces/CI65DOC/pages/19462456193/cs.UsrMgr+CreateLocalUser #> function UsrMgr_CreateLocalUser { param ( [Parameter(Mandatory = $true)] [string]$UserName, [Parameter(Mandatory = $true)] [string]$FullName, [Parameter(Mandatory = $true)] [string]$Password, [string]$Description, [bool]$PasswordNeverExpire = $true ) $Global:cs.UsrMgr_CreateLocalUser($UserName, $FullName, $Password, $Description, $PasswordNeverExpire) } # TODO: #389 Update Get-Help for UsrMgr_DeleteLocalUserAccount <# .SYNOPSIS Delete a local user account. .DESCRIPTION This function deletes a local user account from the system. .PARAMETER UserName The name of the user to delete. .EXAMPLE PS C:\> UsrMgr_DeleteLocalUserAccount -UserName "JohnDoe" .NOTES For more information, please visit https://capasystems.atlassian.net/wiki/spaces/CI65DOC/pages/19462456261/cs.UsrMgr+DeleteLocalUserAccount #> function UsrMgr_DeleteLocalUserAccount { param ( [Parameter(Mandatory = $true)] [string]$UserName ) $Global:cs.UsrMgr_DeleteLocalUserAccount($UserName) } # TODO: #390 Update Get-Help for UsrMgr_EnumMembersOfLocalGroup <# .SYNOPSIS Get group members of a local group. .DESCRIPTION This function retrieves the members of a local group on the system. .PARAMETER GroupName The name of the group to get the members of. .EXAMPLE PS C:\> UsrMgr_EnumMembersOfLocalGroup -GroupName "Administrators" .NOTES For more information, please visit https://capasystems.atlassian.net/wiki/spaces/CI65DOC/pages/19462456176/cs.UsrMgr+EnumMembersOfLocalGroup #> function UsrMgr_EnumMembersOfLocalGroup { param ( [Parameter(Mandatory = $true)] [string]$GroupName ) $Value = $Global:cs.UsrMgr_EnumMembersOfLocalGroup($GroupName) return $Value } # TODO: #391 Update Get-Help for UsrMGr_ExistLocalUserAccount <# .SYNOPSIS Check if a local user account exists. .DESCRIPTION This function checks if a local user account exists on the specified domain or local machine. .PARAMETER UserName The name of the user to check for. .EXAMPLE PS C:\> UsrMgr_ExistLocalUserAccount -UserName "JohnDoe" .NOTES For more information, please visit https://capasystems.atlassian.net/wiki/spaces/CI65DOC/pages/19462456227/cs.UsrMgr+ExistLocalUserAccount #> function UsrMgr_ExistLocalUserAccount { param ( [Parameter(Mandatory = $true)] [string]$UserName ) $Value = $Global:cs.UsrMgr_ExistLocalUserAccount($UserName) return $Value } # TODO: #506 Create tests for UsrMgr_GetNameBySid <# .SYNOPSIS Gets the name of a user by its SID. .DESCRIPTION Gets the name of a user by its SID. .PARAMETER SID The SID of the user. .EXAMPLE UsrMgr_GetNameBySid -SID "S-1-5-21-3623811015-3361044348-30300820-1013" #> function UsrMgr_GetNameBySid { param ( [Parameter(Mandatory=$true)] [string]$SID ) return $Global:cs.UsrMgr_GetNameBySid($SID) } # TODO: #392 Update Get-Help for USRMgr_RemoveUserFromLocalGroup <# .SYNOPSIS Remove a user from a local group. .DESCRIPTION Removes a user from a local group on the specified domain or local machine. .PARAMETER UserName The name of the user to remove from the group. .PARAMETER GroupName The name of the group to remove the user from. .EXAMPLE PS C:\> UsrMgr_RemoveUserFromLocalGroup -UserName "JohnDoe" -GroupName "Administrators" .NOTES For more information, please visit https://capasystems.atlassian.net/wiki/spaces/CI65DOC/pages/19462456244/cs.UsrMgr+RemoveUserFromLocalGroup #> function UsrMgr_RemoveUserFromLocalGroup { param ( $Domain = '', [Parameter(Mandatory = $true)] [string]$UserName, [Parameter(Mandatory = $true)] [string]$GroupName ) $Global:cs.UsrMgr_RemoveUserFromLocalGroup($Domain, $UserName, $GroupName) } |