Set-XboxSymbolSearchPath.ps1
function Set-XboxSymbolSearchPath { <# .Synopsis Sets the search path to look for symbols when using the xbox debugger. .Description Sets the search path to look for symbols when using the xbox debugger. #> param( [string]$Path ) process { $result = $xbdm::DmSetSymbolSearchPath($Path) } } |