Summary: Use Windows PowerShell to get session owner information.
How can I get more information about which Windows PowerShell session configurations came with my system and which were set up by another administrator?
Use Get-PssessionConfiguration and target the Name ...
Summary: Thomas Rayner explores how to restrict Active Directory management with JEA in Windows Server 2016.
Thomas Rayner, Cloud and Datacenter Management MVP, continues his two-part series about an exciting new feature in Windows Server 2016, Just Enough Admin (JEA). Today we’ll investigate how JEA can be applied in a situation where a...
Summary: Learn how to identify endpoints on a server.
How can I use Windows PowerShell to see the available endpoints on a server if I have the necessary rights?
Use the Get-PSSessionConfiguration cmdlet...
Summary: Thomas Rayner explores code promotion with Just Enough Admin (JEA) in Windows Server 2016.
Hello! I’m Thomas Rayner, a proud Cloud and Datacenter Management Microsoft MVP, filling in for The Scripting Guy this weekend. You can find me on Twitter (@MrThomasRayner). I also post my blog bi-weekly: Working Sysadmin—...
Summary: Use Windows PowerShell to identify all partitions on a disk drive.
How can I use Windows PowerShell to easily see all of the partitions on a disk drive?
Pipe the Disk object through Get-Partition (to identify its partitions), then pipe that through Get-Volume to get  ...