Functions/GenXdev.Console/Set-LocationParent4.ps1

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

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

function Set-LocationParent4 {

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

    param (

    )

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