diff --git a/Scripts/my-profile.ps1 b/Scripts/my-profile.ps1 index 08995e3e..bace4f48 100644 --- a/Scripts/my-profile.ps1 +++ b/Scripts/my-profile.ps1 @@ -1,3 +1,7 @@ -function prompt { $null } +write-host -foregroundColor green "Welcome to PowerShell $($PSVersionTable.PSVersion)" -write-host -foregroundColor green "Welcome" +#function prompt {$null} # PS> + +#function prompt { "$ " } # $ + +function prompt { "$(Get-Location)\> " } # C:\ diff --git a/Scripts/set-profile.ps1 b/Scripts/set-profile.ps1 index 32466fde..bd35536a 100755 --- a/Scripts/set-profile.ps1 +++ b/Scripts/set-profile.ps1 @@ -12,7 +12,7 @@ try { copy-item "$PathToRepo/Scripts/my-profile.ps1" "$PathToProfile" -force - write-host -foregroundColor green "OK - updated profile $PathToProfile" + write-host -foregroundColor green "OK - updated profile 'CurrentUserCurrentHost' (gets active on next login)" exit 0 } catch { write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"