-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDell.psd1
46 lines (46 loc) · 1.33 KB
/
Dell.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
@{
RootModule = 'DRAC.psm1'
ModuleVersion = '1.0.1'
GUID = '679ffa5a-9451-3dc1-9529-8689cbb0c8a0'
Author = 'Alexey Miasoedov'
CompanyName = 'MyCompany'
Copyright = '(c) 2016 Alexey Miasoedov. All rights reserved.'
Description = 'Interact with DRAC via CIM interface'
PowerShellVersion = '4.0'
# PowerShellHostName = ''
# PowerShellHostVersion = ''
# DotNetFrameworkVersion = ''
# CLRVersion = ''
# ProcessorArchitecture = ''
# RequiredModules = @()
# RequiredAssemblies = @()
# ScriptsToProcess = @('load\load-dependencies.ps1')
# TypesToProcess = @()
# FormatsToProcess = @()
# NestedModules = @()
FunctionsToExport = #'*-*' # only Verb-Noun; avoid helper functions
'BootTo-Device',
#'Discover-',
'Dismount-Image',
'Get-FcWwn',
'Get-FwInfo',
'Get-Job',
'Get-SEL',
'Get-SystemInfo',
'Invoke-CIM',
'Mount-Image',
'Reboot-Device',
'Set-EmbeddedNic',
'Set-TpmModule',
'Update-Fw'
CmdletsToExport = '*'
VariablesToExport = '*'
AliasesToExport = '*'
# ModuleList = @()
FileList = 'DRAC.psm1'
# PrivateData = @{
# 'RequiredPackages' = @()
# }
# HelpInfoURI = ''
DefaultCommandPrefix = 'Drac'
}