Using PowerShell for Task Automation

Опубликовано: 15 Июнь 2026
на канале: Tbits&Bytes
110
1

Installation of Adobe Reader Acrobat DC - using PowerShell. Instead of joining a Windows 10 VM to local AD, we did a hybrid domain join to O365 Azure AD. Ended the video with a brief introduction to connecting to our O365 Tenant via PowerShell Cmdlets.

Enjoy! :)

Write-Host "List Execution Policies"
Get-ExecutionPolicy -List
Set-ExecutionPolicy RemoteSigned
$credential = Get-Credential
$orgName = ""
Install-Module MSOnline
Install-Module -Name Az -AllowClobber
Install-Module -Name AzureAD
Connect-MsolService -Credential $credential
Connect-AzureAD -Credential $credential

https://github.com/ThunderBall64/powe...