Pearson VUE BrowserLock setup guide
OnVue / Pearson VUE
For Pearson VUE BrowserLock proctored exams. Requires SIP off and AMFI on. The arm script automatically patches BrowserLock when OnVue downloads it.
diag folder from your dashboard.- • macOS Ventura 13.0+
- • SIP disabled (required)
- • AMFI enabled — keep ON
- • Python 3 (installed with Xcode in Step 0)
- • DynamicGPT app open & logged in
- • 5 min — Apple Developer cert (if Xcode already installed)
- • 30–60 min — Xcode install + first run (if not)
- • 5 min — Disable SIP only (AMFI stays on)
- • 5 min — DynamicGPT install + Library Validation toggle
- • 5 min — Download OnVue from Pearson
Total: ~20 min on a warm machine, up to ~85 min if Xcode needs downloading.
One-Time Setup
Step 0: Get an Apple Development Certificate
RequiredUpdate macOS to the latest version
Go to System Settings → General → Software Update and install any available updates. Restart your Mac if prompted.
Install Xcode
Open the App Store, search for Xcode, and click Get. Enter your Apple ID password and wait for it to download and install (it's large — may take a while).
Open Xcode and accept the license
Launch Xcode. It will ask you to agree to the license agreement and may install additional components — click Agree and Install for everything it asks. Wait until you see the Xcode welcome screen.
Create a new project
On the welcome screen, click Create New Project. At the top of the template picker, select the macOS tab, then choose App and click Next.
- Product Name: Anything — e.g. TestApp
- Team: If it says "None", click Add an Account, sign in with your Apple ID, then select your Personal Team.
- Organization Identifier: Anything — e.g. com.test
- Everything else: Leave as default.
Click Next, choose any save location (Desktop is fine), and click Create.
Set up signing
In the left sidebar, click the top-level project name (the blue icon). Then click Signing & Capabilities in the center panel. Make sure your Personal Team is selected under Team.
Build and run
Click the ▶ Play button in the top-left toolbar. Xcode will compile the app and a "Hello, world!" window will appear. Once you see this window, you're done.
Close Xcode (optional: delete it)
Close the Hello World window and quit Xcode. You can delete Xcode from your Applications folder if you want to free up space — the certificate stays on your Mac permanently.
Which Mac Do I Have?
RequiredOpen About This Mac
Click the Apple logo in the top-left corner of your screen, then click About This Mac.
Identify Your Chip
If you see "Chip: Apple M1/M2/M3/M4" — you have an Apple Silicon Mac. This requires two reboots for setup.
If you see "Processor: Intel Core i5/i7/i9" — you have an Intel Mac. Everything can be done in one reboot.
Not sure? Apple menu → About This Mac. "Chip: Apple M…" = Silicon. "Processor: Intel…" = Intel.
Disable SIP only (keep AMFI on)
SIP off, AMFI ONShut down completely
Apple menu → Shut Down. Wait until the screen is fully black with no lights — don't just close the lid.
Boot into Recovery Mode (Apple Silicon)
Press and hold the power button for about 10–15 seconds until you see "Loading startup options…". Release. Click the Options gear icon → Continue. Select your user and enter your password if prompted.
Open Terminal in Recovery
In the menu bar at the top, click Utilities → Terminal.
Disable SIP
csrutil disableYou should see: "Successfully disabled System Integrity Protection."
Reboot back to macOS
rebootWait for your Mac to restart and log in normally. AMFI is untouched. Continue to the verification step.
Verify Everything Worked
Requiredcsrutil statusExpected: "System Integrity Protection status: disabled."
nvram -p | grep amfiExpected: nothing prints. (No boot-args amfi_get_out_of_my_way=1 line.) Empty output means AMFI is on, which is what OnVue needs.
sudo nvram boot-args=""Then reboot:
sudo rebootAfter reboot, re-run nvram -p | grep amfi — it should now return nothing.
Install DynamicGPT (OnVue version)
One Timediag.diag, and the installed app is called DiagnosticReporter. Both are DynamicGPT.Unzip and move to Desktop
Unzip diag.zip and drag the diag folder onto your Desktop.
Unquarantine the folder
Open the diag folder and open copy.txt. Select all (⌘ + A) and copy (⌘ + C).
Open Terminal (⌘ + Space → type "Terminal" → Return). Type cd (with a space after), then drag and drop the diag folder into the Terminal window — it autofills the path. Press Return.
Now paste (⌘ + V) and press Return. This removes macOS quarantine flags and makes the installer executable.
xattr -cr . && chmod +x Install.command Uninstall.commandDouble-click Install.command
Open the diag folder and double-click Install.command.
A password box pops up — type your normal Mac login password and press Return. You won't see characters as you type — that's normal. Wait for "INSTALLATION COMPLETE", then close the Terminal window.
Allow DynamicGPT to run inside BrowserLock (one-time setting)
OnVue uses a locked-down browser called BrowserLock. The command below tells your Mac to let DynamicGPT run inside it. Only needs to be done once — it stays set even after you reboot. Open Terminal and paste this:
sudo defaults write /Library/Preferences/com.apple.security.libraryvalidation.plist DisableLibraryValidation -bool trueEnter your Mac password when asked and press Return.
sudo defaults delete /Library/Preferences/com.apple.security.libraryvalidation.plist DisableLibraryValidationDownload OnVue
One TimeDownload OnVue from Pearson
Go to home.pearsonvue.com, log into your exam account, and download the OnVUE app. It will download as a .zip file.
Unzip and move to Applications
Unzip the download and move OnVUE.app to your Applications folder. Then remove quarantine:
xattr -cr /Applications/OnVUE.appBefore Each Exam
Do these steps right before your exam
Open DynamicGPT and log in
Open DiagnosticReporter from your Applications → Utilities folder (or Spotlight) and log in. Keep it running — do not quit it.
Grant permissions (if first time or after update)
Go to System Settings → Privacy & Security. Grant Accessibility and Screen & System Audio Recording to DiagnosticReporter.
Arm via Quick Arm
In the DynamicGPT app, open Quick Arm and select OnVue. Tap Arm. Quick Arm automatically:
- Checks SIP is off and AMFI is on (required for OnVue)
- Sets injection environment variables
- Patches any existing BrowserLock on disk
- Starts a background watcher that patches BrowserLock if OnVue re-downloads it
Launch OnVue and check in
Open OnVUE.app from Applications. Complete the system test and check-in process (camera, mic, ID, room scan). When BrowserLock launches, DynamicGPT loads automatically into it.
Triple-click the notch to open DynamicGPT
Same as always — triple-click the top-centre of your screen to open the DynamicGPT overlay.
After Each Exam
ALWAYS disarm after your exam
This cleans up environment variables and kills the background watcher.
Disarm via the app
Open Quick Arm in the DynamicGPT app and tap Disarm.
Restart your Mac (recommended)
Apple menu → Restart. Ensures everything is fully cleaned up.
Troubleshooting
If double-clicking doesn't work, use Terminal:
cd ~/Desktop && ditto -xk diag.zip diagMove the inner folder out:
cd ~/Desktop && mv diag/diag /tmp/diag && rm -rf ~/Desktop/diag && mv /tmp/diag ~/Desktop/SIP is still ON. Disable SIP (see above) and reboot.
This can happen if BrowserLock was patched too early or too late. Disarm via Quick Arm, quit OnVue, re-arm, and try again. The watcher will re-patch BrowserLock when OnVue downloads it fresh.
Quick Arm should show "Armed" status. If not, re-arm. Make sure you armed before launching OnVue.
BrowserLock suspends all running processes. If DynamicGPT loaded correctly, this is blocked automatically. If apps are still freezing, the dylib didn't load into BrowserLock — disarm, quit OnVue, re-arm, and try again.
Run xattr -cr ~/Desktop/diag/ and re-run ./Install.command inside ~/Desktop/diag. If it still won't open, go to System Settings → Privacy & Security and allow it manually.
macOS sometimes revokes permissions after a reboot. Go to System Settings → Privacy & Security → Accessibility and make sure DiagnosticReporter.app is toggled ON. Do the same for Screen & System Audio Recording.
Missing permissions. Grant Accessibility and Screen Recording, then:
killall -9 DiagnosticReporter 2>/dev/null && open /Applications/Utilities/DiagnosticReporter.appFix Problems, Reset, or Uninstall
Your diag folder on your Desktop has two scripts you can double-click any time you need them:
Double-click this when something goes wrong. It cleans up leftover state and reinstalls DynamicGPT fresh. Safe to run multiple times.
- App is stuck, frozen, or won't open
- You want to restart fresh for safety before an exam
- You updated to a new version
- Anything acting weird — when in doubt, run it
How: Quit the app (⌘ + Q), open ~/Desktop/diag, double-click Install.command, enter your Mac password when asked. Done.
Double-click this when you want DynamicGPT gone from your Mac. It moves the app out of your Applications folder, clears saved logins, and puts everything back in the diag folder so you could reinstall later if you change your mind.
- Quit the app (⌘ + Q).
- Open
~/Desktop/diag. - Double-click Uninstall.command.
- Enter your Mac password when asked.
- For full removal: drag the entire diag folder to the Trash and empty it.
If you skip step 5, you can double-click Install.command later to put DynamicGPT back without re-downloading anything.
How to Update DynamicGPT
Uninstall the current version
Quit the app (⌘ + Q), then open ~/Desktop/diag and double-click Uninstall.command. Enter your Mac password when asked.
Delete the old folder
Drag the diag folder to Trash, then empty Trash (right-click the Trash icon → Empty Trash).
Download the latest version
Go to your dashboard and download the newest zip. Unzip it — you'll get a fresh diag folder. Drag it onto your Desktop.
Run Install.command
Double-click Install.command inside the folder, enter your Mac password, wait for "INSTALLATION COMPLETE". Then open the app and log in again.
Help! My Mac Crashed / Froze
Force restart
Hold the power button until the screen goes completely black (about 5–10 seconds). Then let go.
Wait 10 seconds
Give it a moment. Don't press anything yet.
Turn it back on
Press the power button once normally. Your Mac will boot up and you should be good to go.
Re-enable Security After Exams
Re-enable SIP in Recovery Mode (Apple Silicon)
Shut down → hold the power button 10–15 sec → Options → Continue → Utilities → Terminal:
csrutil enablerebootVerify protection is back on
csrutil statusShould say: "System Integrity Protection status: enabled."
Quick Reference
- • Arm and disarm through the app — no Terminal commands needed
- • SIP OFF, AMFI ON — Quick Arm checks this automatically
- • If AMFI is off from another method, re-enable it with: sudo nvram boot-args=""
- • Arm BEFORE launching OnVue — the watcher needs to be running
- • ALWAYS disarm after your exam
Still stuck? Contact support@dynamicgpt.app or join our Discord.
