aboutsummaryrefslogtreecommitdiff
path: root/windows/Users/install.bat
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2025-10-01 17:04:38 +0200
committersrdusr <trevorgray@srdusr.com>2025-10-01 17:04:38 +0200
commit94cab560d29444159e0648bbc0f421bffe28b2e5 (patch)
treefd5ab26a9fc35a64ae8b6222b08d354198a52622 /windows/Users/install.bat
parent3bb4dbc5e0b9b9a003b3d47b7f48a98319ad9108 (diff)
downloaddotfiles-94cab560d29444159e0648bbc0f421bffe28b2e5.tar.gz
dotfiles-94cab560d29444159e0648bbc0f421bffe28b2e5.zip
Testing updated dir structures
Diffstat (limited to 'windows/Users/install.bat')
-rw-r--r--windows/Users/install.bat11
1 files changed, 11 insertions, 0 deletions
diff --git a/windows/Users/install.bat b/windows/Users/install.bat
new file mode 100644
index 0000000..89b3ac6
--- /dev/null
+++ b/windows/Users/install.bat
@@ -0,0 +1,11 @@
+@echo off
+REM === Installing Dotfiles ===
+
+REM Set execution policy for current user
+powershell -NoProfile -Command "Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -Force"
+
+REM Run PowerShell profile (dotfiles)
+powershell -NoProfile -ExecutionPolicy Bypass -File "%USERPROFILE%\Documents\PowerShell\Microsoft.PowerShell_profile.ps1"
+
+REM Run bootstrap script
+powershell -NoProfile -ExecutionPolicy Bypass -File "%USERPROFILE%\Documents\PowerShell\bootstrap.ps1"