aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2024-06-04 17:15:12 +0200
committersrdusr <trevorgray@srdusr.com>2024-06-04 17:15:12 +0200
commit2b8f51650e4d8cdfcd12e440a08d71bf1e1af058 (patch)
tree2390ca21ebbc123f3ceb56447ba1ebc51fe33e9a /README.md
parent4db111c83e5ab357fb7245756bc27e4bedad73f7 (diff)
downloaddotfiles-2b8f51650e4d8cdfcd12e440a08d71bf1e1af058.tar.gz
dotfiles-2b8f51650e4d8cdfcd12e440a08d71bf1e1af058.zip
More info on installing on Windows
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 7 insertions, 3 deletions
diff --git a/README.md b/README.md
index 93c6b43..46c2d19 100644
--- a/README.md
+++ b/README.md
@@ -92,12 +92,16 @@ $ config checkout
```ps1
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -Force; `
-Invoke-WebRequest "https://github.com/srdusr/dotfiles/archive/master.zip" `
+Invoke-WebRequest "https://github.com/srdusr/dotfiles/archive/main.zip" `
-OutFile "$HOME\Downloads\dotfiles.zip"; `
Expand-Archive -Path "$HOME\Downloads\dotfiles.zip" -DestinationPath "$HOME" -Force; `
-Move-Item -Path "$HOME\dotfiles-master\*" -Destination "$HOME" -Force; `
-Remove-Item -Path "$HOME\dotfiles-master" -Recurse -Force; `
+Move-Item -Path "$HOME\dotfiles-main\*" -Destination "$HOME" -Force; `
+Remove-Item -Path "$HOME\dotfiles-main" -Recurse -Force; `
Start-Process -FilePath "$HOME\install.bat"
+
+
+Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -Force
+irm 'https://raw.githubusercontent.com/srdusr/dotfiles/main/install.bat' | iex
```