Functions/GenXdev.Console/Set-LocationParent5.ps1

###############################################################################

<#
.SYNOPSIS
Provides the ...... alias to go five directory up
 
.DESCRIPTION
Provides the ...... alias to go five directory up
#>

function Set-LocationParent5 {

    [CmdletBinding()]
    [Alias("......")]

    param (

    )

    Set-Location ..
    Set-Location ..
    Set-Location ..
    Set-Location ..
    Set-Location ..
    Get-ChildItem
}