Since CTRL+ALT+DEL affects your local machine, you can send CTRL+ALT+END to your RDP Session in order to do tasks like Task Manager, Lock the Session or change your admin password, all inside your RDP connection.
Here is a quick tip to install the VMware PowerCLI, which is – like the name says – for Windows PowerShell.
To initiate the installation process, type this command into the Powershell Console:
Install-Module -Name VMware.PowerCLI
Powershell will ask you if you wish to install “NuGet”, which is required to automatically download and install VMware PowerCLI from PSGallery. You also have to trust the PSGallery repository in order to proceed with the installation.
Now you can list all of the VMware PowerCLI Modules:
Get-Module -ListAvailable | where { $_.Name -match “vmware” }
Or just check your currently installed VMware PowerCLI version:
With Windows Server 2008 R2, Active Directory has now a recycle bin. With this feature you do not have to use for example Windows Server Backup to initiate an authoritative AD restore, instead you can quickly recover deleted Users, OUs, Groups and other objects through Active Directory Administrative Center (Windows Server 2012 an upwards) or PowerShell
Enabling AD Recycle Bin (PowerShell commands
Enable-ADOptionalFeature ‘Recycle Bin Feature’ -Scope ForestOrConfigurationSet -Target ajni.lab
We can also restore from Active
Directory Administrative Center (ADAC)
Note that while AD Recycle Bin gives you the
flexibility of quickly restoring deleted AD Objects, you should also have a
functional Windows Server Backup and VM Backup with solutions like HPE Data Protector
or VEEAM. Just in case something goes horribly wrong!
Here is a quick command to find locked out users in your domain. Pretty straightforward:
If that’s too much Information you can only select the username:
The command is not getting recognized? Be sure to install the RSAT (Remote Server Administration Tools) for AD DS (Active Directory Domain Services), which also install the Powershell Snap-In via Server Manager (if you are using a Windows Server OS to manage your AD):
If you have performance problems with your computer, specifically while playing a video game, your computer might have installed a faulty patch. After installing KB4482887, as stated on the Microsoft page, “users may notice graphics and mouse performance degradation with desktop gaming when playing certain games, such as Destiny 2.” Check Microsoft’s site for full details: https://support.microsoft.com/en-us/help/4482887/windows-10-update-kb4482887
How to uninstall this update
You can easily uninstall this update from control panel – just search for it – or you can hit Run > control.exe. Under Programs & Features hit View Installed Updates. You can also use the Modern System Settings App to achieve the same goal.
Locate the correct update and uninstall it. Your PC will reboot.
That’s it! Another way of preventing such things is not to download/install updates on day one. By installing them you are essentially beta testing for Microsoft. ?