Skip to content

Commit c65be5b

Browse files
committed
Remove old profile before install
1 parent d6ae6a7 commit c65be5b

File tree

3 files changed

+24
-1
lines changed

3 files changed

+24
-1
lines changed

Microsoft.PowerShell_profile.ps1

+4
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,7 @@ remove-item alias:wget
33
set-alias gh Get-Help
44
set-alias which gcm
55
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 }

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22

33
# Installation
44
- 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`

setup.ps1

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+

0 commit comments

Comments
 (0)