LinuxOnWindowsProfileFiles

Author: Troy Larson

description

Linux on Windows Profile Files

paths

4 paths
paths use Windows environment syntax

collection commands

# PowerShell Artifact Collection Script
# Target: LinuxOnWindowsProfileFiles
# Run as Administrator

#Requires -RunAsAdministrator

$ErrorActionPreference = "SilentlyContinue"
$DestBase = "D:\Evidence"

# Function to handle artifact collection with robocopy
function Collect-Artifact {
    param (
        [string]$SourceDir,
        [string]$FolderName,
        [string]$FileMask = "*"
    )
    $FullDest = Join-Path -Path $DestBase -ChildPath $FolderName
    robocopy "$SourceDir" "$FullDest" "$FileMask" /E /COPY:DAT /R:0 /W:0 /NP /NFL /NDL /NJH /NJS | Out-Null
}

# 1. .bash_history
$UserPath = Join-Path $env:USERPROFILE "AppData\Local\Packages\*\LocalState\rootfs\home\*\"
Collect-Artifact -SourceDir "$UserPath" -FileMask ".bash_history" -FolderName "_bash_history"

# 2. .bash_logout
$UserPath = Join-Path $env:USERPROFILE "AppData\Local\Packages\*\LocalState\rootfs\home\*\"
Collect-Artifact -SourceDir "$UserPath" -FileMask ".bash_logout" -FolderName "_bash_logout"

# 3. .bashrc
$UserPath = Join-Path $env:USERPROFILE "AppData\Local\Packages\*\LocalState\rootfs\home\*\"
Collect-Artifact -SourceDir "$UserPath" -FileMask ".bashrc" -FolderName "_bashrc"

# 4. .profile
$UserPath = Join-Path $env:USERPROFILE "AppData\Local\Packages\*\LocalState\rootfs\home\*\"
Collect-Artifact -SourceDir "$UserPath" -FileMask ".profile" -FolderName "_profile"

Write-Host "Collection complete!" -ForegroundColor Green

Save as .ps1 and run as Administrator. Use: powershell -ExecutionPolicy Bypass -File script.ps1