Path.psd1
@{ RootModule = 'Path.psm1' ModuleVersion = '1.0.18' CompatiblePSEditions = @( 'Core' 'Desktop' ) GUID = 'f7c572ca-64ea-48ec-9dc5-acecd5f10115' Author = 'PSModule' CompanyName = 'PSModule' Copyright = '(c) 2025 PSModule. All rights reserved.' Description = 'A PowerShell module to manage the PATH environment variable on Windows.' PowerShellVersion = '5.1' ProcessorArchitecture = 'None' RequiredModules = @( 'Admin' 'DynamicParams' ) TypesToProcess = @() FormatsToProcess = @() FunctionsToExport = @( 'Add-EnvironmentPath' 'Get-EnvironmentPath' 'Remove-EnvironmentPath' 'Repair-EnvironmentPath' ) CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @() ModuleList = @() FileList = @( 'Path.psm1' ) PrivateData = @{ PSData = @{ Tags = @( 'environment' 'environment-variables' 'Linux' 'MacOS' 'path' 'powershell' 'powershell-module' 'PSEdition_Core' 'PSEdition_Desktop' 'Windows' ) LicenseUri = 'https://github.com/PSModule/Path/blob/main/LICENSE' ProjectUri = 'https://github.com/PSModule/Path' IconUri = 'https://raw.githubusercontent.com/PSModule/Path/main/icon/icon.png' } } } |