-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathIntuneEndpointTools.psd1
47 lines (29 loc) · 1.58 KB
/
IntuneEndpointTools.psd1
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
@{
# Script module or binary module file associated with this manifest
RootModule = 'IntuneEndpointTools.psm1'
# Version number of this module.
ModuleVersion = '1.2'
# ID used to uniquely identify this module
GUID = '078b865d-6313-4a52-b910-86f32bd24f85'
# Author of this module
Author = 'David Just'
# Company or vendor of this module
CompanyName = ''
# Copyright statement for this module
Copyright = '(c) 2022. All rights reserved.'
# Description of the functionality provided by this module
Description = 'A PowerShell module containing a set of tools for managing and diagnosing Intune MDM on Windows endpoints designed with Intune support staff in mind.'
# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = '5.1'
# Functions to export from this module
FunctionsToExport = @('Get-IntuneMDMDiagReport','Get-IntuneEventLogs','Invoke-IntuneSync','Invoke-IntuneAppAssignmentReprocess','Disable-IntuneESP','Export-IntuneDiagnosticPackage')
# Private data to pass to the module specified in ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
PrivateData = @{
PSData = @{
Tags = @('Intune', 'MDM')
LicenseUri = 'https://github.com/djust270/IntuneEndpointTools/blob/main/LICENSE'
ProjectUri = 'https://github.com/djust270/IntuneEndpointTools'
ReleaseNotes = 'https://github.com/djust270/IntuneEndpointTools/blob/main/README.md'
}
}
}