-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTecharyGet.psd1
More file actions
52 lines (33 loc) · 1.41 KB
/
TecharyGet.psd1
File metadata and controls
52 lines (33 loc) · 1.41 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
@{
# Script module file associated with this manifest
RootModule = 'TecharyGet.psm1'
# Version of this module
ModuleVersion = '2.4'
# ID used to uniquely identify this module
GUID = '8d777e7e-fd28-4e34-bf9d-0c325bb81a76'
# Author of this module
Author = 'Adam Sweetapple'
# Company or vendor of this module
CompanyName = 'Techary'
# Copyright
Copyright = '(c) 2026 Techary. All rights reserved.'
# Description of the module
Description = 'A PowerShell module for managing app installations and uninstalls using Winget Repo, MSI, EXE, ZIP, and MSIX sources. Supports custom logic and Intune deployment.'
# Minimum version of PowerShell required
PowerShellVersion = '5.1'
# Functions to export
FunctionsToExport = "Install-TecharyApp","Uninstall-TecharyApp","Help-TecharyApp","Get-TecharyAppList","Update-TecharyGetModule"
# Cmdlets to export
CmdletsToExport = @()
# Variables to export
VariablesToExport = @()
# Aliases to export
AliasesToExport = @()
# Private data to pass to PowerShell
PrivateData = @{
PSData = @{
Tags = @('winget', 'installer', 'automation', 'techary', 'uninstall', 'intune')
ProjectUri = 'https://github.com/Techary/TecharyGet'
}
}
}