PowerShell enable running scripts
```powershell
# 시스템 전체
Start-Process powershell -Verb RunAs # 관리자 권한으로 PowerShell 실행 후 아래 명령 실행
Set-ExecutionPolicy RemoteSigned -Scope LocalMachine -Force
# 임시로 한 번만
powershell -NoProfile -ExecutionPolicy Bypass -File .\schedule.ps1
# 현재 세션에서
Set-ExecutionPolicy Bypass -Scope Process -Force
.\schedule.ps1
```