Start-XboxCrashDump.ps1

function Start-XboxCrashDump {
    <#
    .Synopsis
        Sends crash dump from the Xbox 360 to a Windows development machine
    .Description
        Sends crash dump information from an Xbox 360 console to a client running on a Windows development platform.
    .Example
        Start-XboxCrashDump
    #>

    param()
    
    
    begin {
        if (-not (Test-Path Variable:\XapDebugger)) {
            . $psScriptRoot\XbpsDebugger.ps1
        }
    }
    process {
        $Result = $XapDebugger::DmCrashDump()
        $Result
    }
}