├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CredentialRetriever ├── CredentialRetriever.psd1 ├── CredentialRetriever.psm1 ├── Functions │ ├── Get-AIMCredential.ps1 │ ├── Get-CCPCredential.ps1 │ └── Set-AIMConfiguration.ps1 ├── Private │ ├── Invoke-AIMClient.ps1 │ ├── Skip-CertificateCheck.ps1 │ └── Start-AIMClientProcess.ps1 └── about_CredentialRetriever.help.txt ├── LICENSE ├── README.md ├── appveyor.yml ├── media ├── Get-AIMCredential.png ├── RetrieveCreds.png ├── Set-AIMConfiguration.png ├── ToCredential.png └── ToSecureString.png └── tests ├── CredentialRetriever.Tests.ps1 ├── Get-AIMCredential.Tests.ps1 ├── Get-CCPCredential.Tests.ps1 ├── Invoke-AIMClient.Tests.ps1 ├── Set-AIMConfiguration.Tests.ps1 ├── Skip-CertificateCheck.Tests.ps1 └── Start-AIMClientProcess.Tests.ps1 /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspete/CredentialRetriever/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspete/CredentialRetriever/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspete/CredentialRetriever/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspete/CredentialRetriever/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspete/CredentialRetriever/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspete/CredentialRetriever/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CredentialRetriever/CredentialRetriever.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspete/CredentialRetriever/HEAD/CredentialRetriever/CredentialRetriever.psd1 -------------------------------------------------------------------------------- /CredentialRetriever/CredentialRetriever.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspete/CredentialRetriever/HEAD/CredentialRetriever/CredentialRetriever.psm1 -------------------------------------------------------------------------------- /CredentialRetriever/Functions/Get-AIMCredential.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspete/CredentialRetriever/HEAD/CredentialRetriever/Functions/Get-AIMCredential.ps1 -------------------------------------------------------------------------------- /CredentialRetriever/Functions/Get-CCPCredential.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspete/CredentialRetriever/HEAD/CredentialRetriever/Functions/Get-CCPCredential.ps1 -------------------------------------------------------------------------------- /CredentialRetriever/Functions/Set-AIMConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspete/CredentialRetriever/HEAD/CredentialRetriever/Functions/Set-AIMConfiguration.ps1 -------------------------------------------------------------------------------- /CredentialRetriever/Private/Invoke-AIMClient.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspete/CredentialRetriever/HEAD/CredentialRetriever/Private/Invoke-AIMClient.ps1 -------------------------------------------------------------------------------- /CredentialRetriever/Private/Skip-CertificateCheck.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspete/CredentialRetriever/HEAD/CredentialRetriever/Private/Skip-CertificateCheck.ps1 -------------------------------------------------------------------------------- /CredentialRetriever/Private/Start-AIMClientProcess.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspete/CredentialRetriever/HEAD/CredentialRetriever/Private/Start-AIMClientProcess.ps1 -------------------------------------------------------------------------------- /CredentialRetriever/about_CredentialRetriever.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspete/CredentialRetriever/HEAD/CredentialRetriever/about_CredentialRetriever.help.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspete/CredentialRetriever/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspete/CredentialRetriever/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspete/CredentialRetriever/HEAD/appveyor.yml -------------------------------------------------------------------------------- /media/Get-AIMCredential.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspete/CredentialRetriever/HEAD/media/Get-AIMCredential.png -------------------------------------------------------------------------------- /media/RetrieveCreds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspete/CredentialRetriever/HEAD/media/RetrieveCreds.png -------------------------------------------------------------------------------- /media/Set-AIMConfiguration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspete/CredentialRetriever/HEAD/media/Set-AIMConfiguration.png -------------------------------------------------------------------------------- /media/ToCredential.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspete/CredentialRetriever/HEAD/media/ToCredential.png -------------------------------------------------------------------------------- /media/ToSecureString.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspete/CredentialRetriever/HEAD/media/ToSecureString.png -------------------------------------------------------------------------------- /tests/CredentialRetriever.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspete/CredentialRetriever/HEAD/tests/CredentialRetriever.Tests.ps1 -------------------------------------------------------------------------------- /tests/Get-AIMCredential.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspete/CredentialRetriever/HEAD/tests/Get-AIMCredential.Tests.ps1 -------------------------------------------------------------------------------- /tests/Get-CCPCredential.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspete/CredentialRetriever/HEAD/tests/Get-CCPCredential.Tests.ps1 -------------------------------------------------------------------------------- /tests/Invoke-AIMClient.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspete/CredentialRetriever/HEAD/tests/Invoke-AIMClient.Tests.ps1 -------------------------------------------------------------------------------- /tests/Set-AIMConfiguration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspete/CredentialRetriever/HEAD/tests/Set-AIMConfiguration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Skip-CertificateCheck.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspete/CredentialRetriever/HEAD/tests/Skip-CertificateCheck.Tests.ps1 -------------------------------------------------------------------------------- /tests/Start-AIMClientProcess.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspete/CredentialRetriever/HEAD/tests/Start-AIMClientProcess.Tests.ps1 --------------------------------------------------------------------------------