PSCredentialManager.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
@{
    RootModule = 'PSCredentialManager.psm1'
    ModuleVersion = '1.0.11'
    GUID = '1edda3dd-4527-46c4-9d86-f6bda0dc1390'
    Author = 'Adam Bertram'
    CompanyName = 'Adam the Automator, LLC'
    Copyright = '(c) 2017 Adam Bertram. All rights reserved.'
    Description = 'This module allows management and automation of Windows cached credentials.'
    PowerShellVersion = '5.0'
    FunctionsToExport = 'Get-CachedCredential','Removed-CachedCredential','New-CachedCredential'
    CmdletsToExport = '*'
    VariablesToExport = '*'
    AliasesToExport = '*'
    PrivateData = @{
        PSData = @{

            # Tags applied to this module. These help with module discovery in online galleries.
            Tags = @('PSModule')

            # A URL to the license for this module.
            # LicenseUri = ''

            # A URL to the main website for this project.
            ProjectUri = 'https://github.com/adbertram/PSCredentialManager'

            # A URL to an icon representing this module.
            # IconUri = ''

            # ReleaseNotes of this module
            # ReleaseNotes = ''

        } # End of PSData hashtable

    } 
}