-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMicrosoft.PowerShell_profile_osx.ps1
executable file
·51 lines (47 loc) · 1.95 KB
/
Microsoft.PowerShell_profile_osx.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Create a symbolic link for the file
# mac
# mkdir /Users/tto/.config/powershell
# ln -s /Users/tto/git/PowerShell/Microsoft.PowerShell_profile_osx.ps1 /Users/tto/.config/powershell/Microsoft.PowerShell_profile.ps1
# bash on win 10
# mkdir /home/tto/.config/powershell
# Copy-Item /mnt/c/Users/tto/OneDrive/_psscripts/git/PowerShell/Microsoft.PowerShell_profile_osx.ps1 $Profile -Force
# Update PATH variable for Mac so that I can run most bash commands in PS
# make sure new paths are inserted before existing
$addToPath = @(
"/usr/local/bin",
"/opt/homebrew/opt/ruby/bin",
"/opt/homebrew/bin",
"/opt/homebrew/sbin",
"/Users/tto/Library/Python/3.9/bin"
)
$newPath = ($addToPath -join ":"),$env:PATH -join ":"
$env:PATH = $newPath
# import modules for powercli
function Import-PowerCliModules {
Import-Module PowerCLI.Vds, PowerCLI.ViCore
}
New-Alias -Name ipcli -Value Import-PowerCliModules
# check if a new release of PowerShell Core is available on GitHub
function Test-PSVersionGitHub {
try {
# get latest release from github atom feed
$Release = Invoke-RestMethod https://github.com/PowerShell/PowerShell/releases.atom -ErrorAction Stop | Select-Object -First 1
} catch {
Write-Warning "Could not check for new version. $_ `n"
break
}
# extract information from atom response
$GitId = $Release.id -split "/" | Select-Object -Last 1
$Download = -join("https://github.com",$Release.link.href)
# Add information to dictionary for output
$output = [ordered]@{
"PSVersion" = $PSVersionTable.PSVersion;
"GitCommitId" = $PSVersionTable.GitCommitId;
"GitHubReleaseVersion" = $GitId;
"GitHubReleaseLink" = $Download;
}
Write-Output (New-Object -TypeName psobject -Property $output)
}
# powershell started checking for newer versions by itself
# Test-PSVersionGitHub
. ~/git/PowerShell/Microsoft.PowerShell_profile.ps1