Awesome new book has been released at the end of April 2022 … Mastering Cyber Intelligence: Gain comprehensive knowledge and skills to conduct threat intelligence…
View More Mastering Cyber Intelligence: Gain comprehensive knowledge and skills to conduct threat intelligence for effective system defenseTag: How-To
How to close your laptop lid and still use a monitor
Here is how to setup you laptop with a closed lid and external monitor. In my case I got a big external monitor as I…
View More How to close your laptop lid and still use a monitorCopy 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 AnotherList 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: Import-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 PowerShellPowerShell – Get user’s Manager, Department and Title information
Here is another quick helper for Help Desk guys to pull quickly information about user in PowerShell: SamAccountName Title Department Manager In this case the…
View More PowerShell – Get user’s Manager, Department and Title informationReset Password for user in Active Directory
Quick Help Desk script tool in PowerShell to reset user password : Clear-Host Import-Module ActiveDirectory $newpwd = Read-Host "[ Enter the new password ]" -AsSecureString…
View More Reset Password for user in Active DirectoryGet list of installed software on machine from command line
This is handy command line if you want pull quickly list of installed software on the machine. You can output it in to terminal or…
View More Get list of installed software on machine from command lineStop opening Server Manager at logon in Windows Server 2012 R2
The Server Manager wizard provides information of installed roles and features in . This Server Manager wizard will be automatically launched at logon when you…
View More Stop opening Server Manager at logon in Windows Server 2012 R2Remove all Group Membership from Disabled user except Domain User Group in PowerShell
Here is quick PowerShell script to remove ALL Group Membership from Disabled user in . We will remove all Group membership from this user except…
View More Remove all Group Membership from Disabled user except Domain User Group in PowerShellList Direct Reports to Manager in PowerShell
Here is the task for today to use . I was asked to find the list of employees under a specific manager. In you can…
View More List Direct Reports to Manager in PowerShell
You must be logged in to post a comment.