blob: 89b3ac67ff3fd7bfb08a9ee4db81f3a8f8083880 (
plain)
1
2
3
4
5
6
7
8
9
10
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"
|