TablacusExplorer
Appsv1
Author: Andrew Rathbun
description
Tablacus Explorer
paths
3 paths
LogsTablacus Explorer - remember.xml
C:\Users\%user%\AppData\Local\Temp\*\configremember.xmlLogsTablacus Explorer - window.xml
C:\Users\%user%\AppData\Local\Temp\*\configwindow.xmlLogsTablacus Explorer - window1.xml
C:\Users\%user%\AppData\Local\Temp\*\configwindow1.xml› paths use Windows environment syntax
collection commands
# PowerShell Artifact Collection Script
# Target: TablacusExplorer
# 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. Tablacus Explorer - remember.xml
$UserPath = Join-Path $env:USERPROFILE "AppData\Local\Temp\*\config"
Collect-Artifact -SourcePath "$UserPath\remember.xml" -FolderName "Tablacus_Explorer___remember_xml"
# 2. Tablacus Explorer - window.xml
$UserPath = Join-Path $env:USERPROFILE "AppData\Local\Temp\*\config"
Collect-Artifact -SourcePath "$UserPath\window.xml" -FolderName "Tablacus_Explorer___window_xml"
# 3. Tablacus Explorer - window1.xml
$UserPath = Join-Path $env:USERPROFILE "AppData\Local\Temp\*\config"
Collect-Artifact -SourcePath "$UserPath\window1.xml" -FolderName "Tablacus_Explorer___window1_xml"
Write-Host "Collection complete!" -ForegroundColor Green› Save as .ps1 and run as Administrator. Use: powershell -ExecutionPolicy Bypass -File script.ps1