Skip to content

Instantly share code, notes, and snippets.

@gravejester
Last active August 29, 2015 14:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gravejester/f0673d05068a162de7ad to your computer and use it in GitHub Desktop.
Save gravejester/f0673d05068a162de7ad to your computer and use it in GitHub Desktop.
My PowerShell Profile
# PowerShell Profile - Øyvind Kallstad
# Last updated: 27.11.2014
# Get the original prompt
$originalPrompt = (Get-Item function:prompt).ScriptBlock
# define our new custom prompt
$customPrompt = {
$currentLocaction = $executionContext.SessionState.Path.CurrentLocation.ToString()
$host.UI.RawUI.WindowTitle = $currentLocaction.Replace('Microsoft.PowerShell.Core\','')
Write-Host '[' -NoNewLine
if (Test-Path variable:/PSDebugContext) {
Write-Host 'DBG' -NoNewline -ForegroundColor 'Red'
}
elseif(Invoke-IsAdmin){
Write-Host "$($env:COMPUTERNAME)" -NoNewLine -ForegroundColor 'Red'
}
else{
Write-Host "$($env:COMPUTERNAME)" -NoNewLine -ForegroundColor 'DarkGray'
}
Write-Host "] $(Invoke-PathShortener $currentLocaction)$('>' * ($nestedPromptLevel + 1))" -NoNewLine
return ' '
}
# define a demo prompt
$demoPrompt = {
$host.UI.RawUI.WindowTitle = $executionContext.SessionState.Path.CurrentLocation.ToString()
return '[Øyvind Kallstad] > '
}
function Set-Prompt {
param ([ScriptBlock] $ScriptBlock)
$null = New-Item -Path function:prompt -Value $ScriptBlock -Force
}
function Invoke-PathShortener {
<#
.SYNOPSIS
Path Shortener
.NOTES
Author: Øyvind Kallstad
Date: 27.11.2014
Version: 1.0
#>
[CmdletBinding()]
param (
# Path to shorten.
[Parameter(Position = 0)]
[ValidateNotNullorEmpty()]
[string] $Path,
# Defines how many path levels to keep after the root before shortening.
[Parameter(Position = 1)]
[int] $KeepAfterRoot = 1
)
$regexString = '^(.+:{1,2}|\\{2}.+?\\.+?(?=\\))(.*)'
$separator = [System.IO.Path]::DirectorySeparatorChar
# first we need to clean up the path
if ($path.StartsWith('Microsoft.PowerShell.Core\FileSystem')) {
$path = $path.Replace('Microsoft.PowerShell.Core\FileSystem::','')
}
elseif ($path.StartsWith('Microsoft.PowerShell.Core')) {
$path = $path.Replace('Microsoft.PowerShell.Core\','')
}
# use regex to separate the root from the rest of the path
$matches = [regex]::Matches($path,$regexString)
$pathRoot = $matches.Groups[1].Value
$pathRest = ($matches.Groups[2].Value).TrimStart('\')
# split on the separator character to get an array of path parts
$pathParts = $pathRest.Split($separator)
# put together the outpath string
if ($pathParts) {
if ($pathParts.Length -ge ($KeepAfterRoot + 2)) {
$outPath += $pathRoot
for ($i = 0; $i -lt $KeepAfterRoot; $i++) {
$outPath += $separator + $pathParts[$i]
}
$outPath += '...' + $separator + $pathParts[-1]
}
else { $outPath += $pathRoot + $separator + $pathRest }
}
else { $outPath += $pathRoot }
Write-Output $outPath
}
function Open-SublimeText{
# Øyvind Kallstad //2014
[CmdletBinding()]
param(
[Parameter(ValueFromPipeline = $true, ValueFromPipelinebyPropertyName = $true)]
[string[]]$Path
)
BEGIN{
if(-not(Test-Path -Path $env:ProgramFiles -Filter '\Sublime Text *\sublime_text.exe')){break}
$p = @()
}
PROCESS{
foreach ($thisPath in $Path) {
$p += $thisPath
}
}
END{
$exe = ((Get-Item "$($env:ProgramFiles)\Sublime Text *\sublime_text.exe" | Sort-Object 'LastWriteTime' -Descending | Select-Object -First 1).FullName)
& $exe $p
}
}
function Invoke-GetLocationEx { (Get-Location).ToString() }
function Invoke-IsAdmin {
$windowsIdentity=[System.Security.Principal.WindowsIdentity]::GetCurrent()
$windowsPrincipal=new-object System.Security.Principal.WindowsPrincipal($windowsIdentity)
$adm=[System.Security.Principal.WindowsBuiltInRole]::Administrator
Write-Output ($windowsPrincipal.IsInRole($adm))
}
Set-Alias -Name 'st' -Value 'Open-SublimeText'
Set-Alias -Name 'pwd' -Value 'Invoke-GetLocationEx' -Option 'AllScope' -Force
Set-Prompt $customPrompt
Set-Location -Path 'E:\Users\ojk\Documents\Scripts'
$env:Path += ';C:\Program Files (x86)\ConfigMgr 2012 Toolkit R2\ClientTools'
if ($Host.Name -eq 'Windows PowerShell ISE Host') {
Import-Module 'ISESteroids'
Start-Sleep -Seconds 2
Start-ISERegex
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment