Set-ExecutionPolicy -Scope LocalMachine -ExecutionPolicy RemoteSigned
Install-Module posh-git -Scope CurrentUser
Install-Module oh-my-posh -Scope CurrentUser
##---------------------------------------
## Theming
##---------------------------------------
Import-Module posh-git
Import-Module oh-my-posh
Set-PoshPrompt -Theme pure
##---------------------------------------
## Functions
##---------------------------------------
function Start-ElevatedProcess {
param (
[string]$ExePath,
[string]$StartPath
)
Start-Process -FilePath $ExePath -ArgumentList $StartPath -Verb RunAs
}
function Edit-Hosts {
Start-ElevatedProcess notepad.exe C:\Windows\System32\drivers\etc\hosts
}
function Get-Version {
$PSVersionTable.PSVersion
}
##---------------------------------------
## Aliases
##---------------------------------------
Set-Alias elevate Start-ElevatedProcess
Set-Alias hosts Edit-Hosts