My current Powershell $profile
Set-PSReadlineOption -PredictionSource None
function DelTree {
param (
$pathToDelete
)
remove-item -Path $pathToDelete -Recurse -Force
}
function Rehash {
$env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path","User")
}