Skip to content

Commit a7b6e89

Browse files
committedJun 20, 2023
update installer
1 parent b59be8a commit a7b6e89

File tree

2 files changed

+67
-19
lines changed

2 files changed

+67
-19
lines changed
 

‎README.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
# Windows Powershell Profile
22

33
# Installation
4+
5+
## Enable scripts
46
- Powershell (as Administrator)
57
- `Set-ExecutionPolicy RemoteSigned`
68
- "Windows Powershell" (as Administrator) #see Notes below for more details
79
- `Set-ExecutionPolicy RemoteSigned`
10+
11+
## Install files
812
- Powershell (as normal user)
9-
- `get-item $profile | rename-item -newname { $_.Name -replace 'ps1',(Get-Date -Format yyyyMMdd-HHmmss) } -whatif`
10-
- `Invoke-WebRequest -outfile $profile https://raw.githubusercontent.com/andylytical/powershell/master/Microsoft.PowerShell_profile.ps1`
13+
- `Invoke-WebRequest -outfile "${env:USERPROFILE}\setup.ps1" -Uri https://raw.githubusercontent.com/andylytical/powershell/main/setup.ps1`
14+
- `& "${env:USERPROFILE}\setup.ps1"`
15+
- `rm "${env:USERPROFILE}\setup.ps1"`
1116

1217
# Powershell Tips / Tricks
1318
- [USERGUIDE.md](USERGUIDE.md)

‎setup.ps1

+60-17
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,61 @@
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
1861

0 commit comments

Comments
 (0)