16 lines
472 B
PowerShell
16 lines
472 B
PowerShell
@{
|
|
RootModule = 'ManagePrinters.psm1'
|
|
GUID = '21004010-43d2-4cc0-a4d1-eadd604f97d1'
|
|
ModuleVersion = '0.2'
|
|
Author = 'Yorick Barbanneau'
|
|
Copyright = '(c) 2021 Yorick Barbanneau'
|
|
Description = 'Manage Printer'
|
|
FunctionsToExport = @('Add-NetworkPrinterPort','Install-PrinterDriver', 'Add-NetworkPrinter' )
|
|
CmdletsToExport = @()
|
|
AliasesToExport = @()
|
|
PrivateData = @{
|
|
PSData = @{
|
|
LicenseUri = 'https://git.epha.se/ephase/win_configscripts/LICENCE.md'
|
|
}
|
|
}
|
|
}
|