PowerShell
All pages referring or tutorials for PowerShell.
Get Windows Product Key with PowerShell
Sunday, July 28, 2024 in PowerShell
Categories:
We simply can do this with one command in PowerShell: POWERSHELL (Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform").BackupProductKeyDefault Please note that I am not encouraging software …
Using PowerShell remote sessions
Wednesday, April 10, 2024 in PowerShell
Categories:
Requirements Management computer/Priveleged Access Workstation 15-20 minutes of your time Management server and endpoints are Active Directory joined Starting out Before we can use Powershell to administer remote computers, we need to enable two …
How to enable Remote Group Policy update
Wednesday, January 10, 2024 in PowerShell
Categories:
Group Policy update to multiple computers Sometimes you want to force a group policy update on multiple computers. Often when i am configuring Azure Virtual Desktop Session Hosts i need this option instead of logging into all hosts and executing the …
Bulk create Active Directory users with Powershell
Monday, March 20, 2023 in PowerShell
Categories:
When it comes to creating users for Active Directory, especially in new implementations, you want to minimize the time needed to create the accounts. This is possible by creating the AD users with Powershell. Requirements Minimal knowledge of …