You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
2. Locate the path where the scripts you want to run are located.
65
62
66
-
5. Run the script you want to use.
63
+
```powershell
64
+
Set-Location -Path "path\to\repository\folder"
65
+
```
66
+
67
+
3. Run the script you want to use.
67
68
68
69
**Example:**
69
70
```powershell
70
-
.\Scripts\Test-Latency.ps1
71
+
.\Test-Latency.ps1
71
72
```
72
73
74
+
## Common problems
75
+
76
+
- **AccessDenied**
77
+
- Solution: Run Powershell as administrator
78
+
```powershell
79
+
if (-NOT ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator"))
0 commit comments