Zoom
Appsv1
Author: Ryan McVicar
description
Zoom client artifacts
paths
4 paths
AppsZoom client logs
C:\Users\%user%\AppData\Roaming\Zoom\logs*Zoom client artifacts
AppsZoom client logs (Windows XP)
C:\Documents and Settings\%user%\Application Data\Zoom\*Zoom client artifacts (Windows XP)
AppsZoom client recordings
C:\Users\%user%\Documents\Zoom\*Zoom recording artifacts
AppsZoom plugin (Outlook)
C:\Users\%user%\AppData\Roaming\Zoom Plugin*.jsonZoom plugin artifacts
› paths use Windows environment syntax
collection commands
# PowerShell Artifact Collection Script
# Target: Zoom
# Run as Administrator
#Requires -RunAsAdministrator
$ErrorActionPreference = "SilentlyContinue"
$DestBase = "D:\Evidence"
# Function to handle directory creation and copying
function Collect-Artifact {
param (
[string]$SourcePath,
[string]$FolderName
)
$FullDest = Join-Path -Path $DestBase -ChildPath $FolderName
if (-not (Test-Path -Path $FullDest)) {
New-Item -ItemType Directory -Path $FullDest -Force | Out-Null
}
Copy-Item -Path $SourcePath -Destination $FullDest -Recurse -Force
}
# 1. Zoom client logs
$UserPath = Join-Path $env:USERPROFILE "AppData\Roaming\Zoom\logs"
Collect-Artifact -SourcePath "$UserPath\*" -FolderName "Zoom_client_logs"
# 2. Zoom client logs (Windows XP)
$UserPath = Join-Path $env:USERPROFILE "Application Data\Zoom\"
Collect-Artifact -SourcePath "$UserPath\*" -FolderName "Zoom_client_logs__Windows_XP_"
# 3. Zoom client recordings
$UserPath = Join-Path $env:USERPROFILE "Documents\Zoom\"
Collect-Artifact -SourcePath "$UserPath\*" -FolderName "Zoom_client_recordings"
# 4. Zoom plugin (Outlook)
$UserPath = Join-Path $env:USERPROFILE "AppData\Roaming\Zoom Plugin"
Collect-Artifact -SourcePath "$UserPath\*.json" -FolderName "Zoom_plugin__Outlook_"
Write-Host "Collection complete!" -ForegroundColor Green› Save as .ps1 and run as Administrator. Use: powershell -ExecutionPolicy Bypass -File script.ps1