PoshCode Archive  Artifact [1655101cb6]

Artifact 1655101cb6ef221ea126a8de4a7b378351403707e561b0593c5c9674e6c179ff:

  • File testesr.ps1 — part of check-in [d6fcce8f4b] at 2018-06-10 14:18:24 on branch trunk — #STORED CREDENTIAL CODE (user: ccorin size: 3115)

# encoding: ascii
# api: powershell
# title: testesr
# description: #STORED CREDENTIAL CODE
# version: 0.1
# author: ccorin
# license: CC0
# x-poshcode-id: 6612
# x-archived: 2016-11-09T11:05:44
# x-published: 2016-11-06T21:16:00
#
# $AdminName = Read-Host “Enter your Admin AD username”
# $CredsFile = “C:\$AdminName-PowershellCreds.txt”
# $FileExists = Test-Path $CredsFile
# if  ($FileExists -eq $false) {
# Write-Host ‘Credential file not found. Enter your password:’ -ForegroundColor Red
# Read-Host -AsSecureString | ConvertFrom-SecureString | Out-File $CredsFile
# $password = get-content $CredsFile | convertto-securestring
# $Cred = new-object -typename System.Management.Automation.PSCredential -argumentlist domain\$AdminName,$password}
# else
# {Write-Host ‘Using your stored credential file’ -ForegroundColor Green
# $password = get-content $CredsFile | convertto-securestring
# $Cred = new-object -typename System.Management.Automation.PSCredential -argumentlist domain\$AdminName,$password}
# sleep 2
# Write-Host ‘Connecting to Active Directory’
# #Establishes connection to Active Directory and Exchange with the specified user acccount and password.
# Connect-QADService -Service ‘gbay-ad01’ -Credential $Cred -ErrorAction Stop | out-Null
# $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri http://server.fqdn.com/PowerShell/ -Credential $Cred -Authentication Kerberos -ErrorAction SilentlyContinue
# Import-PSSession $Session -ErrorAction SilentlyContinue -AllowClobber
# if(!$?)
# {write-host “Failed importing the exchange pssession, exiting!”
# exit}
# #END OF STORED CREDENTIAL CODE
#
#STORED CREDENTIAL CODE
$AdminName = Read-Host "Enter your Admin AD username"
$CredsFile = "C:\$AdminName-PowershellCreds.txt"
$FileExists = Test-Path $CredsFile
if  ($FileExists -eq $false) {
	Write-Host 'Credential file not found. Enter your password:' -ForegroundColor Red
	Read-Host -AsSecureString | ConvertFrom-SecureString | Out-File $CredsFile
	$password = get-content $CredsFile | convertto-securestring
	$Cred = new-object -typename System.Management.Automation.PSCredential -argumentlist domain\$AdminName,$password}
else 
	{Write-Host 'Using your stored credential file' -ForegroundColor Green
	$password = get-content $CredsFile | convertto-securestring
	$Cred = new-object -typename System.Management.Automation.PSCredential -argumentlist domain\$AdminName,$password}
sleep 2

Write-Host 'Connecting to Active Directory'
#Establishes connection to Active Directory and Exchange with the specified user acccount and password.
Connect-QADService -Service 'gbay-ad01' -Credential $Cred -ErrorAction Stop | out-Null
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri http://server.fqdn.com/PowerShell/ -Credential $Cred -Authentication Kerberos -ErrorAction SilentlyContinue
Import-PSSession $Session -ErrorAction SilentlyContinue -AllowClobber
if(!$?)
	{write-host "Failed importing the exchange pssession, exiting!"
	exit}
#END OF STORED CREDENTIAL CODE