-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVB.ServerInventory.psd1
More file actions
31 lines (27 loc) · 1.24 KB
/
Copy pathVB.ServerInventory.psd1
File metadata and controls
31 lines (27 loc) · 1.24 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
@{
# -- Identity --
ModuleVersion = '1.0.2'
GUID = '88DE9814-273C-4FC8-852C-7B6D76D79338'
Author = 'Vibhu Bhatnagar'
CompanyName = 'Realtime-IT'
Description = 'VB Server Inventory Module -- collects system, AD, GPO, security, apps, and service data from Windows servers'
Copyright = '(c) 2026 Vibhu. All rights reserved.'
# -- Requirements --
PowerShellVersion = '5.1'
# -- Root module --
RootModule = 'VB.ServerInventory.psm1'
# -- Exports -- loader controls what gets defined, never list individual functions --
FunctionsToExport = '*'
CmdletsToExport = @()
VariablesToExport = @()
AliasesToExport = @()
# -- Metadata --
PrivateData = @{
PSData = @{
Tags = @('Windows', 'Server', 'Inventory', 'AD', 'GPO', 'Security', 'Sysadmin', 'Realtime', 'VBTools')
ProjectUri = 'https://github.com/Vibhu2/ITAdmin_Tools'
ReleaseNotes = 'v1.0.2 -- 15-04-2026 -- Author standardised to Vibhu Bhatnagar across all 34 functions.
v1.0.1 -- 10-04-2026 -- Initial release. 34 functions covering System, Disk, Network, AD, GPO, Security, Apps, Printing, Services, and Scheduled Tasks.'
}
}
}