IntuneTT.psd1
# # Module manifest for module 'PSGet_IntuneTT' # # Generated by: William Hornsby # # Generated on: 14/04/2025 # @{ # Script module or binary module file associated with this manifest. RootModule = '.\IntuneTT.psm1' # Version number of this module. ModuleVersion = '1.0.8' # Supported PSEditions # CompatiblePSEditions = @() # ID used to uniquely identify this module GUID = '2da0fe61-b237-4156-8dc6-0d850e481565' # Author of this module Author = 'William Hornsby' # Company or vendor of this module CompanyName = 'Me' # Copyright statement for this module Copyright = '(c) 2025 William Hornsby. All rights reserved.' # Description of the functionality provided by this module Description = 'Intune Troubleshooting Toolkit - To help with troubleshooting policy, app and other such deployments. I did not make all of the scripts within this, the idea of the tool is to collect all the useful stuff for troubleshooting Intune devices into one space.' # Minimum version of the Windows PowerShell engine required by this module # PowerShellVersion = '' # Name of the Windows PowerShell host required by this module # PowerShellHostName = '' # Minimum version of the Windows PowerShell host required by this module # PowerShellHostVersion = '' # Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. # DotNetFrameworkVersion = '' # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. # CLRVersion = '' # Processor architecture (None, X86, Amd64) required by this module # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module # RequiredModules = @() # Assemblies that must be loaded prior to importing this module # RequiredAssemblies = @() # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() # Type files (.ps1xml) to be loaded when importing this module # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess # NestedModules = @() # 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. FunctionsToExport = 'Get-UninstallStrings', 'Get-RunningProcessInfo', 'Install-RequiredModule', 'Get-AutopilotDiagnosticInfo', 'ParseIMELogs', 'Find-StringInFile', 'Get-Win32AppReport', 'Get-PendingReboot', 'Get-WinAppAssignments', 'Get-AttestationReadiness', 'Get-AllMDMDiagnosticInfo', 'Remove-Win32AppKeys' # 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. CmdletsToExport = '*' # Variables to export from this module VariablesToExport = '*' # 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. AliasesToExport = '*' # DSC resources to export from this module # DscResourcesToExport = @() # List of all modules packaged with this module # ModuleList = @() # List of all files packaged with this module FileList = 'IntuneTT.psd1', 'IntuneTT.psm1' # 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. PrivateData = @{ #RequiredModules of this module RequiredModules = @('Microsoft.Graph.Authentication','Microsoft.Graph.DeviceManagement','Microsoft.Graph.Beta.Devices.CorporateManagement','Microsoft.Graph.Beta.DeviceManagement','Microsoft.Graph.Compliance','Microsoft.Graph.Users','Microsoft.Graph.Groups') PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. Tags = 'Intune','Troubleshooting','Toolkit','PowerShell' # A URL to the license for this module. # LicenseUri = '' # A URL to the main website for this project. ProjectUri = 'https://github.com/BassJamm/IntuneTT' # A URL to an icon representing this module. # IconUri = '' # ReleaseNotes of this module ReleaseNotes = '#### Version 1.0.8 - Release #### - No changes to files, new folder layout to avoid uploading git files. #### Version 1.0.7 - Release #### - Added function: Get-MDMDiagnostics - which will collect all diagnostics, same as the Collect Diagnostics option in Intune. - Added function: Remove-Win32AppKeys - will remove all traces of an appid from the win32app reg keys, aking to refreshing gpos for apps. - Added function: Install-RequiredModule - Listed modules as dependacies of thes module and function to install them all. - Added function: Get-RunningProcessInfo - Will search for a string in the running processes and return the list. - Added function: Get-UninstallStrings - Will try to return any applications that have uninstall strings in the registry. - Changed function name, Get-MDMDiagnosticInfo to Get-AutopilotDiagnosticInfo - clearer name for what it returns. #### Version 1.0.6 - Release #### - Fixed Get-WinAppAssignments Function Error when Script is not installed - Fixed Install-RequiredMGGraphModules error for compliance module - Added function: Get-AttestationReadiness - which will check for attestation Readiness for Autopilot #### Version 1.0.3 - Release #### - Added function: Get-PendingReboot - which will check for pending reboots. - Added function: Get-Win32AppReport - which will download and run the Get-Win32AppReport Script. - Added function: Install-RequiredMGGraphModules - installs the modules needed for this module and the ones most commonly used. - Added function: Get-WinAppAssignments - will download and run the Get-Win32AppReport Script. #### Version 1.0.2 - Release #### - Removed ps1 file, not needed. #### Version 1.0.1 - Release #### - Figuring out how to package and publish! - Only added initial functionality to module.' # Prerelease string of this module # Prerelease = '' # Flag to indicate whether the module requires explicit user acceptance for install/update/save # RequireLicenseAcceptance = $false # External dependent modules of this module # ExternalModuleDependencies = @() } # End of PSData hashtable } # End of PrivateData hashtable # HelpInfo URI of this module HelpInfoURI = 'https://github.com/BassJamm/IntuneTT' # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. # DefaultCommandPrefix = '' } |