Start-XboxTitle.ps1
function Start-XboxTitle { <# .Synopsis Starts an xbox title .Description Starts an xbox title .Example Start-XboxTitle "media:\Gears Of War" .Parameter Path Path to the title .Parameter CommandLineArguments The command line arguments to the title #> param( $Path, $CommandLineArguments, [Parameter(ValueFromPipelineByPropertyName=$true)] [Alias('Name')] [String[]] $Console ) process { Set-XboxTitle @PSBoundParameters -Reboot } } |