|
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/main/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) |
| 1 | +$DATE = Get-Date -UFormat '%Y%m%d_%H%M%S' |
| 2 | +$URL_BASE = 'https://raw.githubusercontent.com/andylytical/powershell/main' |
| 3 | + |
| 4 | +function Backup-File { |
| 5 | + param( |
| 6 | + [Parameter(Mandatory = $true)] |
| 7 | + [string]$filepath |
| 8 | + ) |
| 9 | + |
| 10 | + if ( Test-Path -Path $filepath -PathType Leaf ) { |
| 11 | + get-item $filepath | rename-item -newname { $_.Name + $DATE } |
| 12 | + } |
| 13 | +} |
| 14 | + |
| 15 | +function Install-FileFromURL { |
| 16 | + param( |
| 17 | + [Parameter(Mandatory = $true)] |
| 18 | + [string]$url, |
| 19 | + |
| 20 | + [Parameter(Mandatory = $true)] |
| 21 | + [string]$target_dir, |
| 22 | + |
| 23 | + [Parameter()] |
| 24 | + [string]$target_filename = '' |
| 25 | + ) |
| 26 | + |
| 27 | + if ( $target_filename.Length -lt 1 ) { |
| 28 | + $target_filename = $url.split('/')[-1] |
| 29 | + } |
| 30 | + |
| 31 | + $outfile = [IO.Path]::Combine( $target_dir, $target_filename ) |
| 32 | + Backup-File $outfile |
| 33 | + Invoke-WebRequest -OutFile $outfile $url |
| 34 | +} |
| 35 | + |
| 36 | +# Dictionary of filename -> target install dir |
| 37 | +$files = @{ |
| 38 | + 'custom_startup.ps1' = [IO.Path]::Combine( $env:OneDrive, 'Startup' ) |
| 39 | + 'Microsoft.PowerShell_profile.ps1' = [IO.Path]::Combine( $env:USERPROFILE, 'Documents', 'WindowsPowerShell' ) |
| 40 | +} |
| 41 | + |
| 42 | +$files.GetEnumerator() | ForEach-Object { |
| 43 | + $fn = $_.Key |
| 44 | + $target_dir = $_.Value |
| 45 | + Install-FileFromURL ` |
| 46 | + -url "${URL_BASE}/${fn}" ` |
| 47 | + -target_dir $target_dir |
| 48 | +} |
| 49 | + |
| 50 | +# # custom_startup |
| 51 | +# $fn = 'custom_startup.ps1' |
| 52 | +# Install-FileFromURL ` |
| 53 | +# -url "${URL_BASE}/${fn}" ` |
| 54 | +# -target_dir ( [IO.Path]::Combine( $env:OneDrive, 'Startup' ) ) |
| 55 | + |
| 56 | +# # Powershell profile |
| 57 | +# $fn = (get-item $profile).Name |
| 58 | +# Install-FileFromURL ` |
| 59 | +# -url "${URL_BASE}/${fn}" ` |
| 60 | +# -target_dir (get-item $profile).Directory.FullName |
18 | 61 |
|
0 commit comments