forked from PowerShell/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMicrosoft.PowerShell.LocalAccounts.psd1
More file actions
32 lines (31 loc) · 1.02 KB
/
Copy pathMicrosoft.PowerShell.LocalAccounts.psd1
File metadata and controls
32 lines (31 loc) · 1.02 KB
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
@{
RootModule = 'Microsoft.Powershell.LocalAccounts'
ModuleVersion = '1.0.0.0'
GUID = '8e362604-2c0b-448f-a414-a6a690a644e2'
Author = 'Microsoft Corporation'
CompanyName = 'Microsoft Corporation'
Copyright = '© Microsoft Corporation. All rights reserved.'
Description = 'Provides cmdlets to work with local users and local groups'
PowerShellVersion = '3.0'
CLRVersion = '4.0'
FormatsToProcess = @('LocalAccounts.format.ps1xml')
CmdletsToExport = @(
'Add-LocalGroupMember',
'Disable-LocalUser',
'Enable-LocalUser',
'Get-LocalGroup',
'Get-LocalGroupMember',
'Get-LocalUser',
'New-LocalGroup',
'New-LocalUser',
'Remove-LocalGroup',
'Remove-LocalGroupMember',
'Remove-LocalUser',
'Rename-LocalGroup',
'Rename-LocalUser',
'Set-LocalGroup',
'Set-LocalUser'
)
AliasesToExport= @( "algm", "dlu", "elu", "glg", "glgm", "glu", "nlg", "nlu", "rlg", "rlgm", "rlu", "rnlg", "rnlu", "slg", "slu")
HelpInfoURI = 'https://go.microsoft.com/fwlink/?LinkId=717973'
}