-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinstall.ps1
executable file
·598 lines (501 loc) · 19.9 KB
/
install.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
#!pwsh
# =============================================================================
#
# Dotfiles Installer Script for Windows Systems
#
# Author: AnalogCyan
# License: Unlicense
#
# =============================================================================
# =============================================================================
# CONFIGURATION
# =============================================================================
# Package lists - empty for now, to be populated later
$WINGET_APPS = @(
# --- Core System & Shell ---
"Microsoft.PowerShell"
"Microsoft.WindowsTerminal"
# --- Developer Essentials ---
"Git.Git"
"vim.vim"
"Microsoft.VisualStudioCode"
"Python.Python.3.13"
"Python.Launcher"
"Microsoft.DevHome"
"Microsoft.Sysinternals"
"Microsoft.WinDbg"
# --- Shell Enhancements & Fonts ---
"DEVCOM.JetBrainsMonoNerdFont"
"Starship.Starship"
"junegunn.fzf"
"ajeetdsouza.zoxide"
# --- Essential Utilities ---
"Microsoft.PowerToys"
"M2Team.NanaZip"
"Microsoft.PCManager"
"Microsoft.OneDrive"
# --- Browsers ---
"Microsoft.Edge"
"TheBrowserCompany.Arc"
# --- Productivity & Notes ---
"LukiLabs.Craft"
# --- Security ---
"AgileBits.1Password"
"AgileBits.1Password.CLI"
# --- Communication ---
"Discord.Discord"
)
# PowerShell module list
$POWERSHELL_MODULES = @(
# --- Shell Experience ---
"PSReadLine"
"Terminal-Icons"
"PSFzf"
"posh-git"
# --- Extended Functionality ---
"PowerShellForGitHub"
"PSWindowsUpdate"
"BurntToast"
)
# System paths to add
$SYSTEM_PATHS = @(
"C:\Program Files\Vim\vim91"
)
# Git configuration
$GIT_USER_NAME = "AnalogCyan"
$GIT_USER_EMAIL = "[email protected]"
# Paths
$DOTFILES_DIR = Get-Location
$POWERSHELL_PROFILE_DIR = Split-Path -Parent $PROFILE
$CONFIG_DIR = "$env:USERPROFILE\.config"
# =============================================================================
# UTILITY FUNCTIONS
# =============================================================================
# Colors for terminal output
$COLOR_RED = 'DarkRed'
$COLOR_GREEN = 'DarkGreen'
$COLOR_YELLOW = 'DarkYellow'
$COLOR_BLUE = 'DarkBlue'
function Write-LogInfo {
param([string]$Message)
Write-Host "INFO: " -ForegroundColor $COLOR_BLUE -NoNewline
Write-Host $Message
}
function Write-LogSuccess {
param([string]$Message)
Write-Host "SUCCESS: " -ForegroundColor $COLOR_GREEN -NoNewline
Write-Host $Message
}
function Write-LogWarning {
param([string]$Message)
Write-Host "WARNING: " -ForegroundColor $COLOR_YELLOW -NoNewline
Write-Host $Message
}
function Write-LogError {
param([string]$Message)
Write-Host "ERROR: " -ForegroundColor $COLOR_RED -NoNewline
Write-Host $Message
}
function Confirm-Action {
param([string]$Message)
$response = Read-Host -Prompt "$Message (y/n)"
return $response -match '^[yY]$'
}
function Install-WingetApp {
[CmdletBinding()]
param (
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[string]
$name
)
# First check if the app is already installed
Write-LogInfo "Checking if $name is already installed..."
$installedApp = winget list -e --id $name 2>$null
if ($installedApp -match $name) {
Write-LogInfo "$name is already installed. Checking for updates..."
winget upgrade --silent --accept-package-agreements --accept-source-agreements -e $name
}
else {
Write-LogInfo "Installing $name via Windows Package Manager..."
winget install --silent --accept-package-agreements --accept-source-agreements -e $name
}
}
# Function to manage sudo functionality
function Set-SudoSupport {
Write-LogInfo "Configuring sudo functionality..."
# Check Windows version to see if built-in sudo is available
$WinVer = [System.Environment]::OSVersion.Version
$SupportsBuiltInSudo = ($WinVer.Major -eq 10 -and $WinVer.Build -ge 25300) -or ($WinVer.Major -ge 11 -and $WinVer.Build -ge 22631)
if ($SupportsBuiltInSudo) {
Write-LogInfo "Built-in sudo is supported on this system."
# Check if gsudo is installed and uninstall it
if (Get-Command "gsudo" -ErrorAction SilentlyContinue) {
Write-LogInfo "Uninstalling gsudo..."
winget uninstall gsudo --silent
}
# Enable built-in sudo if not already enabled
$SudoEnabled = (Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Sudo" -Name "Enabled" -ErrorAction SilentlyContinue).Enabled
if ($SudoEnabled -ne 1) {
Start-Process powershell -Verb runAs -ArgumentList "-NoLogo -NoProfile -Command reg add 'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Sudo' /v 'Enabled' /t REG_DWORD /d 1 /f" -Wait
Write-LogSuccess "Enabled built-in sudo!"
}
else {
Write-LogInfo "Built-in sudo is already enabled."
}
# Set sudo to inline mode
$SudoMode = (Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Sudo" -Name "Mode" -ErrorAction SilentlyContinue).Mode
if ($SudoMode -ne 0) {
# 0 is inline mode
Start-Process powershell -Verb runAs -ArgumentList "-NoLogo -NoProfile -Command reg add 'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Sudo' /v 'Mode' /t REG_DWORD /d 0 /f" -Wait
Write-LogSuccess "Set built-in sudo to inline mode!"
}
else {
Write-LogInfo "Built-in sudo is already in inline mode."
}
}
else {
Write-LogInfo "Built-in sudo is NOT supported on this version of Windows. Falling back to gsudo."
if (-not (Get-Command "gsudo" -ErrorAction SilentlyContinue)) {
Write-LogInfo "Installing gsudo..."
winget install gerardog.gsudo --silent --accept-package-agreements --accept-source-agreements
}
else {
Write-LogInfo "gsudo is already installed."
}
}
Write-LogSuccess "Sudo configuration completed."
}
# =============================================================================
# INSTALLATION FUNCTIONS
# =============================================================================
function Test-SystemRequirements {
Write-LogInfo "Checking system requirements..."
# Check Windows version (Windows 11 or newer)
$osVersion = [System.Environment]::OSVersion.Version
if ($osVersion.Major -lt 10 -or ($osVersion.Major -eq 10 -and $osVersion.Build -lt 22000)) {
Write-LogError "This script requires Windows 11 or newer!"
exit 1
}
# Check if running without admin privileges (preferred)
$isAdmin = ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")
if ($isAdmin) {
Write-LogError "Script should not be run as administrator!"
exit 1
}
Write-LogSuccess "System requirements check passed."
}
function Install-PackageManagers {
Write-LogInfo "Installing package managers..."
# Install Windows Package Manager (Winget)
if (-not (Get-Command winget.exe -ErrorAction SilentlyContinue)) {
Write-LogInfo "Windows Package Manager (Winget) not found. Installing..."
try {
# Use ms-windows-store URI to open Microsoft Store to the App Installer page
Start-Process "ms-windows-store://pdp/?ProductId=9NBLGGH4NNS1"
Write-LogInfo "Microsoft Store has been opened to the App Installer page."
Write-LogInfo "Please install the App Installer (Winget) from the Microsoft Store."
$confirmation = Confirm-Action "Have you completed the Winget installation from the Microsoft Store? (y/n)"
if (-not $confirmation) {
Write-LogWarning "Winget installation was not confirmed. Some features may not work correctly."
}
else {
# Refresh environment to detect newly installed Winget
$env:Path = [System.Environment]::GetEnvironmentVariable("Path", "Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path", "User")
Write-LogSuccess "Environment refreshed."
}
}
catch {
Write-LogError "Failed to open Microsoft Store. Attempting alternative installation method..."
# Alternative method - download the latest release from GitHub
$apiUrl = "https://api.github.com/repos/microsoft/winget-cli/releases/latest"
$downloadUrl = $null
try {
$release = Invoke-RestMethod -Uri $apiUrl -UseBasicParsing
$downloadUrl = ($release.assets | Where-Object { $_.name -like "*.msixbundle" }).browser_download_url
if ($downloadUrl) {
$tempFile = Join-Path $env:TEMP "WingetInstaller.msixbundle"
Write-LogInfo "Downloading Winget installer..."
Invoke-WebRequest -Uri $downloadUrl -OutFile $tempFile -UseBasicParsing
Write-LogInfo "Installing Winget..."
Add-AppPackage -Path $tempFile
# Refresh environment to detect newly installed Winget
$env:Path = [System.Environment]::GetEnvironmentVariable("Path", "Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path", "User")
Remove-Item $tempFile -Force
Write-LogSuccess "Winget installed successfully via GitHub release."
}
}
catch {
Write-LogError "Failed to install Winget: $($_.Exception.Message)"
Write-LogWarning "Please install Winget manually from the Microsoft Store."
}
}
# Verify installation
if (Get-Command winget.exe -ErrorAction SilentlyContinue) {
Write-LogSuccess "Winget is now available in this session."
}
else {
Write-LogError "Winget installation could not be verified. Please install it manually."
if (Confirm-Action "Would you like to continue anyway? Some features may not work. (y/n)") {
Write-LogWarning "Continuing without verified Winget installation."
}
else {
exit 1
}
}
}
else {
Write-LogInfo "Windows Package Manager (Winget) is already installed."
}
Write-LogSuccess "Package managers installation completed."
}
function Install-Applications {
Write-LogInfo "Installing applications..."
# Install Winget applications
Write-LogInfo "Installing Windows Package Manager applications..."
foreach ($app in $WINGET_APPS) {
Install-WingetApp -name $app
}
Write-LogSuccess "Applications installation completed."
}
function Install-PowerShellModules {
Write-LogInfo "Installing additional PowerShell modules..."
# Update PowerShellGet and trust PSGallery
Write-LogInfo "Updating PowerShellGet and setting up PSGallery..."
if (Get-PSRepository -Name "PSGallery" -ErrorAction SilentlyContinue) {
Set-PSRepository -Name "PSGallery" -InstallationPolicy Trusted
}
Install-Module -Name PowerShellGet -Force -AllowClobber -SkipPublisherCheck
foreach ($module in $POWERSHELL_MODULES) {
if (-not (Get-Module -ListAvailable -Name $module)) {
Write-LogInfo "Installing $module module..."
Install-Module -Name $module -Scope CurrentUser -Force
}
else {
Write-LogInfo "$module is already installed."
}
}
Write-LogSuccess "PowerShell modules installation completed."
}
function Install-StarshipPrompt {
Write-LogInfo "Configuring Starship prompt..."
# Create config directory if it doesn't exist
if (-not (Test-Path $CONFIG_DIR)) {
New-Item -ItemType Directory -Path $CONFIG_DIR -Force | Out-Null
Write-LogInfo "Created config directory at $CONFIG_DIR"
}
# Copy starship.toml from dotfiles repo
$starshipConfigSource = Join-Path $DOTFILES_DIR "starship.toml"
$starshipConfigDest = Join-Path $CONFIG_DIR "starship.toml"
if (Test-Path $starshipConfigSource) {
Copy-Item -Path $starshipConfigSource -Destination $starshipConfigDest -Force
Write-LogSuccess "Copied starship.toml to $starshipConfigDest"
}
else {
Write-LogError "starship.toml not found at $starshipConfigSource"
Write-LogInfo "Creating fallback configuration..."
$url = "https://starship.rs/presets/toml/minimal.toml"
Invoke-WebRequest -Uri $url -OutFile $starshipConfigDest
}
# Ensure Starship is installed via winget
if (-not (Get-Command starship -ErrorAction SilentlyContinue)) {
Write-LogInfo "Installing Starship via winget..."
winget install --accept-source-agreements --accept-package-agreements -e Starship.Starship
}
Write-LogSuccess "Starship prompt configured."
}
function Install-DotfilesConfigs {
Write-LogInfo "Installing dotfiles configurations..."
# Create PowerShell profile directory if it doesn't exist
if (-not (Test-Path $POWERSHELL_PROFILE_DIR)) {
New-Item -ItemType Directory -Path $POWERSHELL_PROFILE_DIR -Force | Out-Null
}
# Copy PowerShell profile
$sourcePSProfile = Join-Path $DOTFILES_DIR "Windows\Microsoft.PowerShell_profile.ps1"
if (Test-Path $sourcePSProfile) {
Write-LogInfo "Installing PowerShell profile..."
Copy-Item -Path $sourcePSProfile -Destination $PROFILE -Force
}
else {
Write-LogWarning "PowerShell profile not found at $sourcePSProfile"
}
# Copy Windows Terminal settings
$terminalSettingsSource = Join-Path $DOTFILES_DIR "Windows\Terminal\settings.json"
$terminalSettingsDestination = "$env:LOCALAPPDATA\Packages\Microsoft.WindowsTerminal_8wekyb3d8bbwe\LocalState\settings.json"
if (Test-Path $terminalSettingsSource) {
Write-LogInfo "Installing Windows Terminal settings..."
# Create destination directory if it doesn't exist
$terminalSettingsDir = Split-Path -Parent $terminalSettingsDestination
if (-not (Test-Path $terminalSettingsDir)) {
New-Item -ItemType Directory -Path $terminalSettingsDir -Force | Out-Null
}
Copy-Item -Path $terminalSettingsSource -Destination $terminalSettingsDestination -Force
Write-LogSuccess "Windows Terminal settings installed."
}
else {
Write-LogWarning "Windows Terminal settings not found at $terminalSettingsSource"
}
# Copy winget settings to both possible locations
$wingetSettingsSource = Join-Path $DOTFILES_DIR "Windows\winget\settings.json"
$wingetSettingsDestinations = @(
(Join-Path $env:LOCALAPPDATA "Microsoft\WinGet\Settings\settings.json"),
(Join-Path $env:LOCALAPPDATA "Packages\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe\LocalState\settings.json")
)
if (Test-Path $wingetSettingsSource) {
Write-LogInfo "Installing winget settings..."
foreach ($destination in $wingetSettingsDestinations) {
# Create destination directory if it doesn't exist
$wingetSettingsDir = Split-Path -Parent $destination
if (-not (Test-Path $wingetSettingsDir)) {
New-Item -ItemType Directory -Path $wingetSettingsDir -Force | Out-Null
}
Copy-Item -Path $wingetSettingsSource -Destination $destination -Force
Write-LogSuccess "Winget settings installed to $destination"
}
}
else {
Write-LogWarning "Winget settings not found at $wingetSettingsSource"
}
Write-LogSuccess "Dotfiles configurations installed."
}
function Set-GitConfiguration {
Write-LogInfo "Configuring Git..."
if (Get-Command git -ErrorAction SilentlyContinue) {
# Choose appropriate editor
$editor = if (Get-Command code -ErrorAction SilentlyContinue) {
"code --wait"
}
else {
"vim"
}
# Set Git configuration
git config --global core.editor $editor
git config --global user.name $GIT_USER_NAME
git config --global user.email $GIT_USER_EMAIL
Write-LogSuccess "Git configuration completed."
}
else {
Write-LogWarning "Git is not installed. Cannot configure Git."
}
}
function Install-SSHConfig {
Write-LogInfo "Setting up SSH configuration..."
$sshPath = "$env:USERPROFILE\.ssh"
# Create .ssh directory if it doesn't exist
if (-not (Test-Path $sshPath)) {
New-Item -ItemType Directory -Path $sshPath -Force | Out-Null
Write-LogInfo "Created SSH directory at $sshPath"
}
# TODO: Implement SSH key copy or generation logic here
Write-LogSuccess "SSH configuration completed."
}
function Set-SystemPaths {
Write-LogInfo "Configuring system paths..."
foreach ($path in $SYSTEM_PATHS) {
if (Test-Path $path) {
$currentPath = [Environment]::GetEnvironmentVariable("Path", "Machine")
if ($currentPath -notlike "*$path*") {
Write-LogInfo "Adding $path to system PATH..."
$newPath = $currentPath + ";" + $path
Start-Process powershell -Verb RunAs -ArgumentList "-NoProfile -Command [Environment]::SetEnvironmentVariable('Path', '$newPath', 'Machine')" -Wait
Write-LogSuccess "Added $path to system PATH"
}
else {
Write-LogInfo "$path is already in system PATH"
}
}
else {
Write-LogWarning "Path $path does not exist, skipping..."
}
}
Write-LogSuccess "System paths configuration completed."
}
function Set-WindowsOptionalFeatures {
Write-LogInfo "Configuring Windows Optional Features..."
# Create a script block with the commands that need elevation
$featureScript = {
# Features to disable
Write-Output "Checking features to disable..."
$featuresToDisable = @(
"WindowsMediaPlayer",
"MicrosoftWindowsPowerShellV2",
"MicrosoftWindowsPowerShellV2Root"
)
foreach ($feature in $featuresToDisable) {
$state = Get-WindowsOptionalFeature -Online -FeatureName $feature
if ($state.State -eq "Enabled") {
Write-Output "Disabling $feature..."
Disable-WindowsOptionalFeature -Online -FeatureName $feature -NoRestart
}
else {
Write-Output "$feature is already disabled."
}
}
# Features to enable
Write-Output "Checking features to enable..."
$featuresToEnable = @(
"VirtualMachinePlatform",
"HypervisorPlatform"
)
foreach ($feature in $featuresToEnable) {
$state = Get-WindowsOptionalFeature -Online -FeatureName $feature
if ($state.State -eq "Disabled") {
Write-Output "Enabling $feature..."
Enable-WindowsOptionalFeature -Online -FeatureName $feature -NoRestart
}
else {
Write-Output "$feature is already enabled."
}
}
}
# Convert the script block to a Base64 string for elevation
$encodedCommand = [Convert]::ToBase64String([Text.Encoding]::Unicode.GetBytes($featureScript.ToString()))
# Execute the commands with elevation
Write-LogInfo "Requesting elevation to modify Windows features..."
Start-Process powershell -Verb RunAs -ArgumentList "-NoProfile", "-EncodedCommand", $encodedCommand -Wait
Write-LogSuccess "Windows Optional Features configuration completed."
}
# =============================================================================
# MAIN SCRIPT
# =============================================================================
function Start-Installation {
# Print banner
Write-Host "=====================================" -ForegroundColor Cyan
Write-Host " Windows Dotfiles Installation Script" -ForegroundColor Cyan
Write-Host "=====================================" -ForegroundColor Cyan
Write-Host ""
# Check if user is aware this script assumes the user is running a fresh up-to-date Windows installation
Write-Host "This script assumes the user is running a fresh up-to-date Windows installation."
Write-Host "Please ensure you have backed up all important data before running this script."
Read-Host -Prompt "Press Enter to continue or Ctrl+C to cancel"
# Run installation steps
Test-SystemRequirements
Set-SudoSupport
Set-WindowsOptionalFeatures
Install-PackageManagers
Install-Applications
Install-PowerShellModules
Set-SystemPaths
Install-StarshipPrompt
Install-DotfilesConfigs
Set-GitConfiguration
Install-SSHConfig
# TODO: Additional tasks as noted in the original script
# - Configure paths
# - Install Win11 cursors
# - Configure additional settings
# Completion message
Write-Host ""
Write-Host "=====================================" -ForegroundColor Cyan
Write-LogSuccess "Dotfiles installation complete!"
Write-Host "=====================================" -ForegroundColor Cyan
if (Confirm-Action "Would you like to restart your computer now to complete the setup?") {
Write-LogInfo "Restarting system..."
Restart-Computer
}
else {
Write-LogInfo "No restart selected. Some changes may require a restart to take effect."
}
}
# Execute the installation
Start-Installation