Skip to content

Commit 50b2eba

Browse files
authored
Update AsBuiltReport.VMware.ESXi.psd1
1 parent b7c7009 commit 50b2eba

File tree

1 file changed

+136
-0
lines changed

1 file changed

+136
-0
lines changed

AsBuiltReport.VMware.ESXi.psd1

Lines changed: 136 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,136 @@
1+
#
2+
# Module manifest for module 'AsBuiltReport.VMware.ESXi'
3+
#
4+
# Generated by: Tim Carman
5+
#
6+
# Generated on: 10/01/2020
7+
#
8+
9+
@{
10+
11+
# Script module or binary module file associated with this manifest.
12+
RootModule = 'AsBuiltReport.VMware.ESXi.psm1'
13+
14+
# Version number of this module.
15+
ModuleVersion = '1.1.4'
16+
17+
# Supported PSEditions
18+
# CompatiblePSEditions = @()
19+
20+
# ID used to uniquely identify this module
21+
GUID = '7398e641-15b0-454b-8b2f-005112eca5e7'
22+
23+
# Author of this module
24+
Author = 'Tim Carman'
25+
26+
# Company or vendor of this module
27+
# CompanyName = 'Unknown'
28+
29+
# Copyright statement for this module
30+
Copyright = '(c) 2025 Tim Carman. All rights reserved.'
31+
32+
# Description of the functionality provided by this module
33+
Description = 'A PowerShell module to generate an as built report on the configuration of VMware ESXi servers.'
34+
35+
# Minimum version of the Windows PowerShell engine required by this module
36+
# PowerShellVersion = '5.1'
37+
38+
# Name of the Windows PowerShell host required by this module
39+
# PowerShellHostName = ''
40+
41+
# Minimum version of the Windows PowerShell host required by this module
42+
# PowerShellHostVersion = ''
43+
44+
# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
45+
# DotNetFrameworkVersion = '4.5'
46+
47+
# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
48+
# CLRVersion = ''
49+
50+
# Processor architecture (None, X86, Amd64) required by this module
51+
# ProcessorArchitecture = ''
52+
53+
# Modules that must be imported into the global environment prior to importing this module
54+
RequiredModules = @(
55+
@{
56+
ModuleName = 'AsBuiltReport.Core';
57+
ModuleVersion = '1.4.3'
58+
}
59+
)
60+
61+
# Assemblies that must be loaded prior to importing this module
62+
# RequiredAssemblies = @()
63+
64+
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
65+
# ScriptsToProcess = @()
66+
67+
# Type files (.ps1xml) to be loaded when importing this module
68+
# TypesToProcess = @()
69+
70+
# Format files (.ps1xml) to be loaded when importing this module
71+
# FormatsToProcess = @()
72+
73+
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
74+
# NestedModules = @()
75+
76+
# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
77+
FunctionsToExport = @('Invoke-AsBuiltReport.VMware.ESXi')
78+
79+
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
80+
# CmdletsToExport = '*'
81+
82+
# Variables to export from this module
83+
# VariablesToExport = '*'
84+
85+
# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
86+
# AliasesToExport = '*'
87+
88+
# DSC resources to export from this module
89+
# DscResourcesToExport = @()
90+
91+
# List of all modules packaged with this module
92+
# ModuleList = @()
93+
94+
# List of all files packaged with this module
95+
# FileList = @()
96+
97+
# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
98+
PrivateData = @{
99+
100+
PSData = @{
101+
102+
# Tags applied to this module. These help with module discovery in online galleries.
103+
Tags = 'AsBuiltReport', 'Report', 'VMware', 'ESXi', 'Documentation', 'PScribo', 'PSEdition_Desktop', 'PSEdition_Core', 'Windows', 'MacOS', 'Linux'
104+
105+
# A URL to the license for this module.
106+
LicenseUri = 'https://raw.githubusercontent.com/AsBuiltReport/AsBuiltReport.VMware.ESXi/master/LICENSE'
107+
108+
# A URL to the main website for this project.
109+
ProjectUri = 'https://github.com/AsBuiltReport/AsBuiltReport.VMware.ESXi'
110+
111+
# A URL to an icon representing this module.
112+
IconUri = 'https://github.com/AsBuiltReport.png'
113+
114+
# ReleaseNotes of this module
115+
ReleaseNotes = 'https://raw.githubusercontent.com/AsBuiltReport/AsBuiltReport.VMware.ESXi/master/CHANGELOG.md'
116+
117+
# Prerelease string of this module
118+
# Prerelease = ''
119+
120+
# Flag to indicate whether the module requires explicit user acceptance for install/update/save
121+
# RequireLicenseAcceptance = $false
122+
123+
# External dependent modules of this module
124+
# ExternalModuleDependencies = @()
125+
} # End of PSData hashtable
126+
127+
} # End of PrivateData hashtable
128+
129+
# HelpInfo URI of this module
130+
# HelpInfoURI = ''
131+
132+
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
133+
# DefaultCommandPrefix = ''
134+
135+
}
136+

0 commit comments

Comments
 (0)