TestCredential
0.0.6
Apteco PS Modules - PowerShell Credentials Test
This module tests your credentials like
# Interactive mode -> this one requests your user and password, uses the current user as default
Test-Credential
# Define User and password beforehand
$c = Get-Credential
Test-Credential -Credentials $c
OR
$c = Get-Credential
Test-Credential -Credentials $c -Non
This module tests your credentials like
# Interactive mode -> this one requests your user and password, uses the current user as default
Test-Credential
# Define User and password beforehand
$c = Get-Credential
Test-Credential -Credentials $c
OR
$c = Get-Credential
Test-Credential -Credentials $c -Non
Apteco PS Modules - PowerShell Credentials Test
This module tests your credentials like
# Interactive mode -> this one requests your user and password, uses the current user as default
Test-Credential
# Define User and password beforehand
$c = Get-Credential
Test-Credential -Credentials $c
OR
$c = Get-Credential
Test-Credential -Credentials $c -NonInteractive
# OR
Get-Credential | Test-Credential
Show more
This module tests your credentials like
# Interactive mode -> this one requests your user and password, uses the current user as default
Test-Credential
# Define User and password beforehand
$c = Get-Credential
Test-Credential -Credentials $c
OR
$c = Get-Credential
Test-Credential -Credentials $c -NonInteractive
# OR
Get-Credential | Test-Credential
Minimum PowerShell version
5.1
Installation Options
Owners
Copyright
(c) 2026 Apteco GmbH. All rights reserved.
Package Details
Author(s)
- florian.von.bracht@apteco.de
Tags
Functions
PSEditions
Dependencies
This module has no dependencies.
Release Notes
0.0.6 Enhancing some spellings
0.0.5 Fixed tags in the manifest
Fixed pipeline mode
0.0.4 Updated copyright to 2025
0.0.3 Fixed a $null comparison order
0.0.2 Bumped the copyright year to 2024
0.0.1 Initial release of test credentials
FileList
- TestCredential.nuspec
- Public\Test-Credential.ps1
- TestCredential.psd1
- TestCredential.psm1