Petit script Powershell pour savoir qui est connecté sur une machine distante :
$computer = Read-Host « Enter the computer Name »
$loginfo = Get-WmiObject -Computer $Computer -Class Win32_ComputerSystem
« Machine Name: » + $loginfo.Name
« User Name: » + $loginfo.UserName