If you attempt to run a PowerShell script on a fresh Windows machine, you'll likely receive a "scripts are disabled" warning. To enable scripts run the following:
```powershell
Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope CurrentUser
```
To remove the policy:
```powershell
Set-ExecutionPolicy -ExecutionPolicy Undefined -Scope CurrentUser
```