summaryrefslogtreecommitdiffstats
path: root/_windows/powershell/Microsoft.PowerShell_profile.ps1
diff options
context:
space:
mode:
Diffstat (limited to '_windows/powershell/Microsoft.PowerShell_profile.ps1')
-rw-r--r--_windows/powershell/Microsoft.PowerShell_profile.ps119
1 files changed, 0 insertions, 19 deletions
diff --git a/_windows/powershell/Microsoft.PowerShell_profile.ps1 b/_windows/powershell/Microsoft.PowerShell_profile.ps1
deleted file mode 100644
index fc55bac..0000000
--- a/_windows/powershell/Microsoft.PowerShell_profile.ps1
+++ /dev/null
@@ -1,19 +0,0 @@
-# Access this file using $PROFILE
-#
-# By default, powershell does not allow execution of non-signed scripts
-# > Get-ExecutionPolicy
-# > Set-ExecutionPolicy -Scope CurrentUser RemoteSigned
-#
-# Home directory:
-# cmd.exe: %USERPROFILE%
-# Powershell: $ENV:USERPROFILE
-#
-# To break long commands in Powershell use a trailing backtick (`)
-
-# Custom colored prompt
-# Ref.: https://stackoverflow.com/questions/6297072
-function prompt
-{
- Write-Host "PS $(get-location)`n>" -nonewline -foregroundcolor DarkCyan
- return ' '
-}