The support desk will require the function to reset users passwords in your environment. Their is a pre-configured role already available in Office 365. Follow these basic steps to assign…
Office 365 How To Configure External Collaboration Settings with Domain Restrictions
In Office 365, how do you configure external collaboration settings but restrict certain domains from collaboration. This is all configured under Azure Active Directory Admin Center. A few clicks and…
Office 365 Password Protection – Custom Banned Passwords – Greyed Out
So you have decided to increase security by adding a banned password list but the option in Azure Active Directory admin center is greyed out. Problem is licensing. This feature…
What is On-Premises, IaaS, PaaS, SaaS and IaC?
Infrastructure as a Service (IaaS) Platform as a Service (PaaS) Software as a Service (SaaS) On-Premise Infrastructure as Code (IaC) Examples I've used What are the differences? Infrastructure as Code…
WVD – Windows Virtual Desktop – Admin Tasks, Tips and Useful Blogs
Windows Virtual Desktop: The Best Step-by-Step Walkthrough Windows Virtual Desktop - Add/Remove Users by AD Group using Azure Automation WVD Troubleshooting Options Tips Tricks – Windows Virtual Desktop Windows…
Azure Administrator – Tasks and Guides
Your one stop shop for the Azure Administrator resource pool of tasks. Task Set the tenant, subscription, and environment for cmdlets to use in the current session. Plan virtual networks…
AZ-103: Microsoft Azure Administrator – EXAM PASSED!!!
Jan 16, 2020 AZ-103: Microsoft Azure ADMINISTRATOR EXAM PASSED!!! #Azure #Administrator #CertifiedProfessional #MicrosoftAzure #MicrosoftCloud #Microsoft #alwaysbelearning #AZ103 #EXAM #PASSED
New Release: PowerCLI 11.4.0
Great news for all the scripting people out there. New Release: PowerCLI 11.4.0 #PowerCLI #Scripting #WhatsNew New Release: PowerCLI 11.4.0 August is always a great month when it comes to…
Ping sweep script test
POWERSHELL import-CSV "" | foreach { $result = Test-Connection -ComputerName $_.Name -Count 1 -Quiet $_.name, $result -join ',' | out-file "c:\scripts\PingSweep\computer_results.txt" -Append } COMMAND /BATCH SCRIPT Create list of computers…
PowerShell : Get COMPUTER objects of a specific group ( this example gets the properties “description” of each object )
# Get COMPUTER objects of a specific group ( this example gets the properties “description” of each object ) # List in a table format Name and Computer Description PropertiesGet-AdGroupMember…