So you just made a keyword search in Outlook and found that very important email from your boss. Awesome! But how can I find the path of that email, you may ask? Here is a very quick tip.
By hitting ALT+ENTER on the corresponding email, you can see some properties, including the email’s folder. In my case it is Posta in Arrivo (Inbox).
Another way of finding out, is to double-click on the email and select File on the top left of the window.
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):