Noticed a new book released about Amazon Connect — very good guide how to setup and utilize this service. Become well-versed with the competencies and…
View More Amazon Connect: Up and Running: Improve your customer experience by building logical and cost-effective solutionsAuthor: CloudWarrior
New book: OKTA Administration released
Amazon has currently new book released for OKTA administration: Okta Administration: Up and Running: Implement enterprise-grade identity and access management for on-premises and cloud apps…
View More New book: OKTA Administration releasedCheck status of Microsoft AntiMalware
Here is a quick snippet to show current status of Microsoft Antimalware on your Windows 10 computer. 12345Clear-Host Write-Host Write-Host "CURRENT STATUS " -Foregroundcolor yellow…
View More Check status of Microsoft AntiMalwarePowerShell to view BIOS version on Dell computer
Here are few commands that you can use to view info about BIOS on DELL computers: List manufacture and version of BIOS 1Get-WmiObject -Class Win32_BIOS…
View More PowerShell to view BIOS version on Dell computerCopy Group Members from One group to Another
Simple PowerShell script to move members of one group to be also members of new group that you have just created. I am using this…
View More Copy Group Members from One group to AnotherCheck if user is member of the group
Here is another quick PowerShell script to check if user is a member of given group. 1234567891011121314151617181920Clear-Host if (Get-Module -ListAvailable -Name ActiveDirectory) { Import-Module ActiveDirectory…
View More Check if user is member of the groupGet Computer Vendor and model via PowerShell
Simple script to get information via PowerShell from the computer about model of the machine and vendor. 123456789101112131415<# Get information about vendor and model of…
View More Get Computer Vendor and model via PowerShellGet AD Group Creation Date
Here is quick one liner hot to get a report on when Active Directory group has been created. This could be asked during audits so…
View More Get AD Group Creation DateGet list of Departments and number of users per Department in PowerShell
I need to create a report from Active Directory. I need to provide list of all Departments and headcount per Department. Here is quick PowerShell…
View More Get list of Departments and number of users per Department in PowerShellList users from 3 different Active Directory Groups with PowerShell
Here is a quick sample of Power Shell snippet to list users from 3 different Active Directory groups: 123Import-Module ActiveDirectory $groups = "AWS-IAM-PCI-Prod-Admin","AWS-IAM-PCI-Prod-Deploy","AWS-IAM-PCI-Prod-Monitoring" foreach($group in…
View More List users from 3 different Active Directory Groups with PowerShell