Functions/Authentication/PSCredential/MCM/Import-MCMCredentialInfo.ps1
function Import-MCMCredentialInfo { [CmdletBinding()] Param() Process { # Modify the details of each Credential Specification here as necessary: $CI = @( [pscustomobject]([ordered]@{ Target = "Windows" User = (whoami) Type = "Identity" Hint = "Windows User Account" }), [pscustomobject]([ordered]@{ Target = "NAS" User = "Kevin" Type = "Identity" Hint = "DarkFoundation NAS Account" }) ) # Output the Credential Info Array $CI } } |