RMS_Support_Tool.psd1

<# ╔════════════════════════════════════════════════════════════════════════════════╗
   ║ WARNING: DO NOT MODIFY ANY COMPONENT OF THE RMS_SUPPORT_TOOL IN ANY KIND, as ║
   ║ this will result in incorrect information in the analysis of your environment. ║
   ╚════════════════════════════════════════════════════════════════════════════════╝ #>


@{

# Script module file associated with this manifest
RootModule = "RMS_Support_Tool.psm1"

# Version
ModuleVersion = "1.1.1"

# Unique ID
GUID = "10019121-903c-4350-b182-2c3b2a37e829"

# Author
Author = "Claus Schiroky"

# Company
CompanyName = "Microsoft"

# Copyright
Copyright = "Copyright (c) 2020 Microsoft. All rights reserved."

# Description
Description = "The 'RMS Support Tool' provides the functionality to reset all Microsoft® AIP/AD RMS services. Its main purpose is to delete the currently downloaded policies and reset the user settings for AIP/AD RMS service, and it can also be used to collect data for troubleshooting."

# Minimum version of the Windows PowerShell engine required by this script module
PowerShellVersion = "5.1"

# Functions to export
FunctionsToExport = "RMS_Support_Tool"

# Packaged files
FileList = "RMS_Support_Tool.psm1","RMS_Support_Tool.psd1","RMS_Support_Tool.htm"

# Private data to pass to the module specified in RootModule/ModuleToProcess
PrivateData = @{

    PSData = @{

        # Tags. These help with module discovery in online galleries
        Tags = "office","office365","powershell","rms","aip","protection","label","classification","reset","tool","aadrm","microsoft","azure","script","support"

        # A URL to the license
        LicenseUri = "https://aka.ms/RMS_Support_Tool"

        # A URL to the main website for this project
        ProjectUri = "https://aka.ms/RMS_Support_Tool"

        # ReleaseNotes
        ReleaseNotes = "https://aka.ms/RMS_Support_Tool"

    } # End of PSData hashtable

} # End of PrivateData hashtable

# HelpInfo URI
HelpInfoURI = "https://aka.ms/RMS_Support_Tool"

}