Tuesday, October 3, 2017

Lecture 3: Learn to securely use Passwords with PowerShell

This video series review passwords


Lesson 1

www.boldzebras.com

1. $un = "tim@gmail.com"
*create user name

2. $pw = "Password"
*create password

3. $sp = $pw = New-Object System.Management.Automation.PSCredential -ArgumentList $un, $pw  


4. Connect-msolService -credential $plainCred
*couldn't run this due to not having access to Office 365




No comments:

Post a Comment