Jon Bucud
04/17/2025, 11:08 PMColeman Kelly
04/18/2025, 7:39 PMRobert Magasi
04/24/2025, 1:31 PMRobert Magasi
04/24/2025, 1:33 PMStephen Daniel Wagner
05/05/2025, 12:57 PMJason McFarland
05/07/2025, 4:56 PMRob Ryan
05/07/2025, 5:24 PMCláudio Rodrigues
05/19/2025, 4:40 PMCláudio Rodrigues
05/19/2025, 4:41 PMMarkus Zehnle
05/26/2025, 9:48 AM# Path to JSON file
$tfwPath = "$env:LOCALAPPDATA\Packages\MSTeams_8wekyb3d8bbwe\LocalCache\Microsoft\MSTeams\tfw\vdi_connection_info.json"
# Check if the file exists
if (-Not (Test-Path -Path $tfwPath)) {
Write-Error "The file vdi_connection_info.json cannot be found: $tfwPath"
exit 1
}
# Get and convert JSON
$jsonContent = Get-Content -Path $tfwPath -Raw | ConvertFrom-Json
# Get the last entry for the session (new session)
$session = $jsonContent.VdiConnectionInfo | Select-Object -Last 1
# Extract data from JSON
$vdiState = $session.vdiConnectedState
$vdiVersion = $session.vdiVersionInfo
$devices = $session.devices
$vdiState.vdiModeVM_Master
06/06/2025, 4:14 PMJulian Singer
06/10/2025, 12:52 PMBryan Walker
06/30/2025, 6:24 PMRob Beekmans
07/01/2025, 7:10 AMPeter Lewis
07/01/2025, 11:53 AMStephen Daniel Wagner
07/01/2025, 1:12 PMStephen Daniel Wagner
07/24/2025, 2:05 PMMark Wolfe
07/24/2025, 8:22 PMStephen Daniel Wagner
08/01/2025, 1:22 PMMDawg
08/04/2025, 11:48 AMTim Cremer
08/25/2025, 4:19 PMTim Cremer
08/28/2025, 2:42 PMRobert Magasi
09/23/2025, 8:57 AMFernando Farabote
09/23/2025, 4:49 PMRobert Magasi
09/25/2025, 2:35 PMStephen Daniel Wagner
09/28/2025, 2:51 PMStephen Daniel Wagner
09/30/2025, 11:47 PMJohn Twilley
10/02/2025, 2:32 PMCormac Long
10/07/2025, 9:19 AMJohn Twilley
10/16/2025, 12:39 PM