Skip to content

Commit

Permalink
Merge pull request #9 from rebelinux/dev
Browse files Browse the repository at this point in the history
v1.2.0
  • Loading branch information
rebelinux authored Nov 22, 2024
2 parents 1fb299a + bf2068c commit 8e2d8fa
Show file tree
Hide file tree
Showing 33 changed files with 914 additions and 954 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,13 @@ jobs:
TWITTER_CONSUMER_API_SECRET: ${{ secrets.TWITTER_CONSUMER_API_SECRET }}
TWITTER_ACCESS_TOKEN: ${{ secrets.TWITTER_ACCESS_TOKEN }}
TWITTER_ACCESS_TOKEN_SECRET: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }}

bsky-post:
needs: publish-to-gallery
runs-on: ubuntu-latest
steps:
- uses: zentered/bluesky-post-action@v0.1.0
with:
post: "[New Release] ${{ github.event.repository.name }} ${{ github.event.release.tag_name }}! Check out what's new! ${{ github.event.release.html_url }} #VMware #AppVolumes #vExpert #AsBuiltReport #PowerShell"
env:
BSKY_IDENTIFIER: ${{ secrets.BSKY_IDENTIFIER }}
BSKY_PASSWORD: ${{ secrets.BSKY_PASSWORD }}
156 changes: 78 additions & 78 deletions AsBuiltReport.VMware.AppVolumes.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -8,120 +8,120 @@

@{

# Script module or binary module file associated with this manifest.
RootModule = 'AsBuiltReport.VMware.AppVolumes.psm1'
# Script module or binary module file associated with this manifest.
RootModule = 'AsBuiltReport.VMware.AppVolumes.psm1'

# Version number of this module.
ModuleVersion = '1.1.0'
# Version number of this module.
ModuleVersion = '1.2.0'

# Supported PSEditions
# CompatiblePSEditions = @()
# Supported PSEditions
# CompatiblePSEditions = @()

# ID used to uniquely identify this module
GUID = 'd194e1c4-5fe2-4773-aac9-36ace0599df1'
# ID used to uniquely identify this module
GUID = 'd194e1c4-5fe2-4773-aac9-36ace0599df1'

# Author of this module
Author = 'Chris Hildebrandt'
# Author of this module
Author = 'Chris Hildebrandt'

# Company or vendor of this module
#CompanyName = ''
# Company or vendor of this module
#CompanyName = ''

# Copyright statement for this module
Copyright = '(c) 2024 Chris.Hildebrandt. All rights reserved.'
# Copyright statement for this module
Copyright = '(c) 2024 Chris.Hildebrandt. All rights reserved.'

# Description of the functionality provided by this module
Description = 'A PowerShell module to generate As built reports on the configuration of VMware AppVolumes'
# Description of the functionality provided by this module
Description = 'A PowerShell module to generate As built reports on the configuration of VMware AppVolumes'

# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = '5.1'
# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = '5.1'

# Name of the Windows PowerShell host required by this module
# PowerShellHostName = ''
# Name of the Windows PowerShell host required by this module
# PowerShellHostName = ''

# Minimum version of the Windows PowerShell host required by this module
# PowerShellHostVersion = ''
# Minimum version of the Windows PowerShell host required by this module
# PowerShellHostVersion = ''

# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
# DotNetFrameworkVersion = ''
# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
# DotNetFrameworkVersion = ''

# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
# CLRVersion = ''
# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
# CLRVersion = ''

# Processor architecture (None, X86, Amd64) required by this module
# ProcessorArchitecture = ''
# Processor architecture (None, X86, Amd64) required by this module
# ProcessorArchitecture = ''

# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @(
@{
ModuleName = 'AsBuiltReport.Core';
ModuleVersion = '1.3.0'
}
)
# Assemblies that must be loaded prior to importing this module
# RequiredAssemblies = @()
# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @(
@{
ModuleName = 'AsBuiltReport.Core';
ModuleVersion = '1.4.0'
}
)
# Assemblies that must be loaded prior to importing this module
# RequiredAssemblies = @()

# Script files (.ps1) that are run in the caller's environment prior to importing this module.
# ScriptsToProcess = @()
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
# ScriptsToProcess = @()

# Type files (.ps1xml) to be loaded when importing this module
# TypesToProcess = @()
# Type files (.ps1xml) to be loaded when importing this module
# TypesToProcess = @()

# Format files (.ps1xml) to be loaded when importing this module
# FormatsToProcess = @()
# Format files (.ps1xml) to be loaded when importing this module
# FormatsToProcess = @()

# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
# NestedModules = @()
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
# NestedModules = @()

# 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.
FunctionsToExport = @('Invoke-AsBuiltReport.VMware.AppVolumes')
# 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.
FunctionsToExport = @('Invoke-AsBuiltReport.VMware.AppVolumes')

# 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.
CmdletsToExport = @()
# 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.
CmdletsToExport = @()

# Variables to export from this module
VariablesToExport = '*'
# Variables to export from this module
VariablesToExport = '*'

# 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.
AliasesToExport = @()
# 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.
AliasesToExport = @()

# DSC resources to export from this module
# DscResourcesToExport = @()
# DSC resources to export from this module
# DscResourcesToExport = @()

# List of all modules packaged with this module
# ModuleList = @()
# List of all modules packaged with this module
# ModuleList = @()

# List of all files packaged with this module
# FileList = @()
# List of all files packaged with this module
# FileList = @()

# 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.
PrivateData = @{
# 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.
PrivateData = @{

PSData = @{
PSData = @{

# Tags applied to this module. These help with module discovery in online galleries.
Tags = @('AsBuiltReport', 'Report', 'VMware', 'AppVolumes', 'App-Volumes','Windows','VDI','Horizon', 'Documentation', 'PScribo', 'PSEdition_Desktop')
# Tags applied to this module. These help with module discovery in online galleries.
Tags = @('AsBuiltReport', 'Report', 'VMware', 'AppVolumes', 'App-Volumes', 'Windows', 'VDI', 'Horizon', 'Documentation', 'PScribo', 'PSEdition_Desktop')

# A URL to the license for this module.
LicenseUri = 'https://raw.githubusercontent.com/AsBuiltReport/AsBuiltReport.VMware.AppVolumes/master/LICENSE'
# A URL to the license for this module.
LicenseUri = 'https://raw.githubusercontent.com/AsBuiltReport/AsBuiltReport.VMware.AppVolumes/master/LICENSE'

# A URL to the main website for this project.
ProjectUri = 'https://github.com/AsBuiltReport/AsBuiltReport.VMware.AppVolumes'
# A URL to the main website for this project.
ProjectUri = 'https://github.com/AsBuiltReport/AsBuiltReport.VMware.AppVolumes'

# A URL to an icon representing this module.
IconUri = 'https://github.com/AsBuiltReport.png'
# A URL to an icon representing this module.
IconUri = 'https://github.com/AsBuiltReport.png'

# ReleaseNotes of this module
ReleaseNotes = 'https://raw.githubusercontent.com/AsBuiltReport/AsBuiltReport.VMware.AppVolumes/master/CHANGELOG.md'
# ReleaseNotes of this module
ReleaseNotes = 'https://raw.githubusercontent.com/AsBuiltReport/AsBuiltReport.VMware.AppVolumes/master/CHANGELOG.md'

} # End of PSData hashtable
} # End of PSData hashtable

} # End of PrivateData hashtable
} # End of PrivateData hashtable

# HelpInfo URI of this module
# HelpInfoURI = ''
# HelpInfo URI of this module
# HelpInfoURI = ''

# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
# DefaultCommandPrefix = ''
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
# DefaultCommandPrefix = ''

}

16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# :arrows_clockwise: VMware AppVolumes As Built Report Changelog

## [1.2.0] - 2023-11-21

### Added

- Tested Report with App Volumes v2410
- Added code to properly display space information

### Changed

- Changed Required Modules to AsBuiltReport.Core v1.4.0
- Improved detection of empty fields in tables
- Improved detection of true/false elements in tables
- Updated GitHub release workflow to add post to Bluesky social platform

## [1.1.0] - 2023-1-1

### Added
Expand All @@ -14,7 +28,7 @@

### Fixed

- Fixed issue with ssl certificate verification in PwSh <= 5
- Fixed issue with ssl certificate verification in PwSh <= 5

## [0.2.0] - 2022-10-12

Expand Down
84 changes: 41 additions & 43 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@ Please refer to the AsBuiltReport [website](https://www.asbuiltreport.com) for m

Sample VMware AppVolumes As Built report HTML file: [Sample VMware AppVolumes As Built Report.html](https://htmlpreview.github.io/?https://raw.githubusercontent.com/AsBuiltReport/AsBuiltReport.VMware.AppVolumes/dev/Samples/Sample%20VMware%20AppVolumes%20As%20Built%20Report.html)

Sample VMware AppVolumes As Built report PDF file: [Sample VMware AppVolumes As Built Report.pdf](https://raw.githubusercontent.com/AsBuiltReport/AsBuiltReport.VMware.AppVolumes/dev/Samples/Sample%20VMware%20AppVolumes%20As%20Built%20Report.pdf)

# :beginner: Getting Started
Below are the instructions on how to install, configure and generate a VMware AppVolumes As Built report.

Expand All @@ -49,14 +47,14 @@ Below are the instructions on how to install, configure and generate a VMware Ap
The VMware AppVolumes As Built Report supports the following AppVolumes versions;

- Should work on version 4.+
- Has been tested on all 230# Builds
- Has been tested on all new Builds

### PowerShell
This report is compatible with the following PowerShell versions;

<!-- ********** Update supported PowerShell versions ********** -->
| Windows PowerShell 5.1 | PowerShell 7 |
|:----------------------:|:--------------------:|
| Windows PowerShell 5.1 | PowerShell 7 |
| :--------------------: | :----------------: |
| :white_check_mark: | :white_check_mark: |
## :wrench: System Requirements
<!-- ********** Update system requirements ********** -->
Expand Down Expand Up @@ -110,15 +108,15 @@ The following provides information of how to configure each schema within the re
### Report
The **Report** schema provides configuration of the VMware AppVolumes report information.

| Sub-Schema | Setting | Default | Description |
|---------------------|--------------|--------------------------------|--------------------------------------------------------------|
| Sub-Schema | Setting | Default | Description |
| ------------------- | ------------ | --------------------------------- | ------------------------------------------------------------ |
| Name | User defined | VMware AppVolumes As Built Report | The name of the As Built Report |
| Version | User defined | 1.0 | The report version |
| Status | User defined | Released | The report release status |
| ShowCoverPageImage | true / false | true | Toggle to enable/disable the display of the cover page image |
| ShowTableOfContents | true / false | true | Toggle to enable/disable table of contents |
| ShowHeaderFooter | true / false | true | Toggle to enable/disable document headers & footers |
| ShowTableCaptions | true / false | true | Toggle to enable/disable table captions/numbering |
| Version | User defined | 1.0 | The report version |
| Status | User defined | Released | The report release status |
| ShowCoverPageImage | true / false | true | Toggle to enable/disable the display of the cover page image |
| ShowTableOfContents | true / false | true | Toggle to enable/disable table of contents |
| ShowHeaderFooter | true / false | true | Toggle to enable/disable document headers & footers |
| ShowTableCaptions | true / false | true | Toggle to enable/disable table captions/numbering |

### Options
The **Options** schema allows certain options within the report to be toggled on or off.
Expand All @@ -129,39 +127,39 @@ The **InfoLevel** schema allows configuration of each section of the report at a

There are 3 levels (0-2) of detail granularity for each section as follows;

| Setting | InfoLevel | Description |
|:-------:|-------------------|--------------------------------------------------------------------------------------------------------------------------------------------|
| 0 | Disabled | Does not collect or display any information |
| 1 | Enabled / Summary | Provides summarised information for a collection of objects |
| 2 | Adv Summary | Provides condensed, detailed information for a collection of objects |
| Setting | InfoLevel | Description |
| :-----: | ----------------- | -------------------------------------------------------------------- |
| 0 | Disabled | Does not collect or display any information |
| 1 | Enabled / Summary | Provides summarised information for a collection of objects |
| 2 | Adv Summary | Provides condensed, detailed information for a collection of objects |

The table below outlines the default and maximum InfoLevel settings for each section.

| Sub-Schema | Default Setting | Maximum Setting |
|--------------|:---------------:|:---------------:|
General | 1 | 1 |
Application | 1 | 2 |
Package | 1 | 2 |
Program | 1 | 2 |
Assignment | 1 | 2 |
Writeables | 1 | 2 |
ADUsers | 1 | 1 |
Computers | 1 | 1 |
ADGroups | 1 | 1 |
ADOUs | 1 | 1 |
Machines | 1 | 1 |
StorageLocations | 1 | 2 |
StorageGroups | 1 | 1 |
Instance | 1 | 2 |
Jobs | 1 | 1 |
Troubleshooting | 1 | 1 |
License | 1 | 1 |
ADDomains | 1 | 2 |
AdminGroups | 1 | 2 |
MachineManagers | 1 | 2 |
Storage | 1 | 1 |
Managers | 1 | 1 |
Settings | 1 | 1 |
| Sub-Schema | Default Setting | Maximum Setting |
| ---------------- | :-------------: | :-------------: |
| General | 1 | 1 |
| Application | 1 | 2 |
| Package | 1 | 2 |
| Program | 1 | 2 |
| Assignment | 1 | 2 |
| Writeables | 1 | 2 |
| ADUsers | 1 | 1 |
| Computers | 1 | 1 |
| ADGroups | 1 | 1 |
| ADOUs | 1 | 1 |
| Machines | 1 | 1 |
| StorageLocations | 1 | 2 |
| StorageGroups | 1 | 1 |
| Instance | 1 | 2 |
| Jobs | 1 | 1 |
| Troubleshooting | 1 | 1 |
| License | 1 | 1 |
| ADDomains | 1 | 2 |
| AdminGroups | 1 | 2 |
| MachineManagers | 1 | 2 |
| Storage | 1 | 1 |
| Managers | 1 | 1 |
| Settings | 1 | 1 |


### Healthcheck
Expand Down
Loading

0 comments on commit 8e2d8fa

Please sign in to comment.