Skip to content

Commit 7b898a8

Browse files
committed
Sync repository
1 parent ca68893 commit 7b898a8

27 files changed

+1177
-226
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@
3131
- [ ] My code follows the code style of this project.
3232
- [ ] My change requires a change to the documentation.
3333
- [ ] I have updated the documentation accordingly.
34-
- [ ] I have read the [**CONTRIBUTING**](https://www.asbuiltreport.com/dev-guide/contributing/) document.
34+
- [ ] I have read the [**CONTRIBUTING**](https://www.asbuiltreport.com/about/contributing/) document.

.github/workflows/PSScriptAnalyzer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
name: Run PSScriptAnalyzer
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v5
8+
- uses: actions/checkout@v4
99
- name: lint
1010
uses: devblackops/github-action-psscriptanalyzer@master
1111
with:

.github/workflows/PSScriptAnalyzerSettings.psd1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
'PSUseToExportFieldsInManifest',
44
'PSReviewUnusedParameter',
55
'PSUseDeclaredVarsMoreThanAssignments',
6-
'PSAvoidGlobalVars'
6+
'PSAvoidGlobalVars',
7+
'PSUseSingularNouns',
8+
'PSAvoidUsingWriteHost'
79
)
810
}

.github/workflows/Release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ on:
55
types: [published]
66

77
jobs:
8-
publish-to-psgallery:
9-
runs-on: windows-latest
8+
publish-to-gallery:
9+
runs-on: windows-2019
1010
steps:
1111
- uses: actions/checkout@v4
1212
- name: Set PSRepository to Trusted for PowerShell Gallery
@@ -26,7 +26,7 @@ jobs:
2626
run: |
2727
Publish-Module -Path ./ -NuGetApiKey ${{ secrets.PSGALLERY_API_KEY }} -Verbose
2828
tweet:
29-
needs: publish-to-psgallery
29+
needs: publish-to-gallery
3030
runs-on: ubuntu-latest
3131
steps:
3232
- uses: Eomm/why-don-t-you-tweet@v2
@@ -42,7 +42,7 @@ jobs:
4242
TWITTER_ACCESS_TOKEN: ${{ secrets.TWITTER_ACCESS_TOKEN }}
4343
TWITTER_ACCESS_TOKEN_SECRET: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }}
4444
bsky-post:
45-
needs: publish-to-psgallery
45+
needs: publish-to-gallery
4646
runs-on: ubuntu-latest
4747
steps:
4848
- uses: zentered/[email protected]

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Setup.md
2+
.vscode/launch.json

AsBuiltReport.System.Resources.Style.ps1

Lines changed: 102 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"Report": {
3+
"Name": "System Resources As Built Report",
4+
"Version": "1.0",
5+
"Status": "Released",
6+
"Language": "en-US",
7+
"ShowCoverPageImage": true,
8+
"ShowTableOfContents": true,
9+
"ShowHeaderFooter": true,
10+
"ShowTableCaptions": true
11+
},
12+
"Options": {},
13+
"InfoLevel": {
14+
"_comment_": "Please refer to the AsBuiltReport project contributing guide for information about how to define InfoLevels.",
15+
"_comment_": "0 = Disabled, 1 = Enabled / Summary, 2 = Adv Summary, 3 = Detailed, 4 = Adv Detailed, 5 = Comprehensive",
16+
"Date": 1,
17+
"TimeZone": 2,
18+
"Uptime": 2,
19+
"PSHost": 2,
20+
"ProcessInfo": 1
21+
},
22+
"HealthCheck": {}
23+
}
Lines changed: 134 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
#
2+
# Module manifest for module 'AsBuiltReport.System.Resources'
3+
#
4+
# Generated by: Jonathan Colon
5+
#
6+
# Generated on: 9/28/2025
7+
#
8+
9+
@{
10+
11+
# Script module or binary module file associated with this manifest.
12+
RootModule = 'AsBuiltReport.System.Resources.psm1'
13+
14+
# Version number of this module.
15+
ModuleVersion = '0.1.1'
16+
17+
# Supported PSEditions
18+
# CompatiblePSEditions = @()
19+
20+
# ID used to uniquely identify this module
21+
GUID = 'f930270b-607d-422b-bd94-b6665bcc5b96'
22+
23+
# Author of this module
24+
Author = 'Jonathan Colon'
25+
26+
# Company or vendor of this module
27+
CompanyName = 'Unknown'
28+
29+
# Copyright statement for this module
30+
Copyright = '(c) 2025 Jonathan Colon. 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 System Resources.'
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 = ''
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+
55+
RequiredModules = @(
56+
@{
57+
ModuleName = 'AsBuiltReport.Core';
58+
ModuleVersion = '1.4.3'
59+
},
60+
@{
61+
ModuleName = 'Diagrammer.Core';
62+
ModuleVersion = '0.2.31'
63+
}
64+
)
65+
66+
# Assemblies that must be loaded prior to importing this module
67+
# RequiredAssemblies = @()
68+
69+
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
70+
# ScriptsToProcess = @()
71+
72+
# Type files (.ps1xml) to be loaded when importing this module
73+
# TypesToProcess = @()
74+
75+
# Format files (.ps1xml) to be loaded when importing this module
76+
# FormatsToProcess = @()
77+
78+
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
79+
# NestedModules = @()
80+
81+
# 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.
82+
FunctionsToExport = @('Invoke-AsBuiltReport.System.Resources')
83+
84+
# 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.
85+
CmdletsToExport = @()
86+
87+
# Variables to export from this module
88+
VariablesToExport = @()
89+
90+
# 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.
91+
AliasesToExport = @()
92+
93+
# DSC resources to export from this module
94+
# DscResourcesToExport = @()
95+
96+
# List of all modules packaged with this module
97+
# ModuleList = @()
98+
99+
# List of all files packaged with this module
100+
# FileList = @()
101+
102+
# 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.
103+
PrivateData = @{
104+
105+
PSData = @{
106+
107+
# Tags applied to this module. These help with module discovery in online galleries.
108+
# Tags = @()
109+
110+
# A URL to the license for this module.
111+
# LicenseUri = ''
112+
113+
# A URL to the main website for this project.
114+
# ProjectUri = ''
115+
116+
# A URL to an icon representing this module.
117+
# IconUri = ''
118+
119+
# ReleaseNotes of this module
120+
# ReleaseNotes = ''
121+
122+
} # End of PSData hashtable
123+
124+
} # End of PrivateData hashtable
125+
126+
# HelpInfo URI of this module
127+
# HelpInfoURI = ''
128+
129+
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
130+
# DefaultCommandPrefix = ''
131+
132+
}
133+
134+

AsBuiltReport.System.Resources/AsBuiltReport.System.Resources.psm1 renamed to AsBuiltReport.System.Resources.psm1

File renamed without changes.

AsBuiltReport.System.Resources/AsBuiltReport.System.Resources.json

Lines changed: 0 additions & 21 deletions
This file was deleted.

0 commit comments

Comments
 (0)