# MS.Open PowerShell integration function mkcd { [CmdletBinding()] param( [Parameter(Mandatory, Position = 0)] [string]$Path ) $directory = New-Item -ItemType Directory -Path $Path -Force Set-Location -LiteralPath $directory.FullName } function reload { [CmdletBinding()] param() if (-not (Test-Path -LiteralPath $PROFILE)) { Write-Warning "No PowerShell profile exists at: $PROFILE" return } . $PROFILE Write-Host "Reloaded $PROFILE" }