PowerShell-Profile/functions/Test-Profile.ps1

8 lines
274 B
PowerShell

# gitea.RdzeN.net
# Reload $profile
function Test-Profile {
if (-not (Test-Path $PROFILE)) {
Copy-Item -Path "$path_gitea_powershell_profile\RdzeN-Profile.ps1" -Destination $PROFILE -force
New-SimulateTyping "Your PowerShell profile was created!"
}
}