File tree 3 files changed +24
-1
lines changed
3 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -3,3 +3,7 @@ remove-item alias:wget
3
3
set-alias gh Get-Help
4
4
set-alias which gcm
5
5
set-alias aliases get-alias
6
+
7
+ # Source files from subdir
8
+ # $psub_dir = Join-Path -Path (get-item $profile).Directory.FullName -ChildPath 'PS1.d'
9
+ # Get-ChildItem -Path $psub_dir -Filter *.ps1 -File | Sort-Object Name | ForEach-Object { echo $_.FullName }
Original file line number Diff line number Diff line change 2
2
3
3
# Installation
4
4
- Powershell (as normal user)
5
- - ` Invoke-WebRequest -outfile "$profile" https://raw.githubusercontent.com/andylytical/powershell/master/Microsoft.PowerShell_profile.ps1 `
5
+ - ` get-item $profile | rename-item -newname { $_.Name -replace 'ps1',(Get-Date -Format yyyyMMdd-HHmmss) } -whatif `
6
+ - ` Invoke-WebRequest -outfile $profile https://raw.githubusercontent.com/andylytical/powershell/master/Microsoft.PowerShell_profile.ps1 `
Original file line number Diff line number Diff line change
1
+ $DATE = Get-Date - Format yyyyMMdd- HHmmss
2
+
3
+ # Move old profile aside
4
+ get-item $profile | rename-item - newname { $_.Name -replace ' ps1' , $curDateTime }
5
+
6
+ # Install new profile
7
+ Invoke-WebRequest - outfile $profile https:// raw.githubusercontent.com / andylytical/ powershell/ master/ Microsoft.PowerShell_profile.ps1
8
+
9
+ # # Replace all files in PS1.d
10
+ # $psub_dir = Join-Path -Path (get-item $profile).Directory.FullName -ChildPath 'PS1.d'
11
+ # #echo $psub_dir
12
+ # Remove-Item -Path $psub_dir -Recurse -Force -WhatIf
13
+ #
14
+ # # Install custom items in PS1.d
15
+ # mkdir $psub_dir
16
+ # ### TODO - how to install all remote items here?
17
+ # # (maybe just git clone, and move)
18
+
You can’t perform that action at this time.
0 commit comments