Your computer's TechLoq filter blocks a few things Claude Code needs. This page fixes that — and checks your work as you go. No tech background needed.
Here's the whole idea in plain terms:
TechLoq keeps your internet safe, but it also blocks some of the websites and secure connections that coding tools rely on. To use Claude Code, you fix two small things:
Just work down the page. It'll test things for you and tell you exactly what's left.
Click the button. Green = it works. Red = TechLoq is blocking it. You don't need to know what any of these are.
Good to know: this button only checks which websites open. It can't check the “trust file” from Step 3 — that gets checked for you when you run the helper there. So even if everything turns green, still do Step 3.
Here's a ready-made message listing only the blocked sites. Copy it and send it to TechLoq — in the TechLoq app go to Support & Help → Contact Us, or give it to whoever manages your filter.
Tip: when TechLoq asks, choose “entire website” and “permanent” so it doesn't expire. After they confirm, run the test again — the reds should turn green.
For safety, TechLoq re-locks every secure website with its own key. Your web browser already recognizes that key — but the behind-the-scenes tools Claude Code uses don't yet. This one small file teaches them to.
The easy way — 2 downloads:
Then right-click the setup helper → “Run with PowerShell.” It finds the trust file, installs it into your coding tools, and tests them — all on its own. If Windows shows a blue warning, click More info → Run anyway (it only changes your own settings and installs nothing).
It sets three settings that point Python, Node, Git and pip at your TechLoq trust file, then makes a test connection with each and shows PASS/FAIL. It changes only your own user settings — no admin, no installs. You can open the .ps1 in Notepad to read it first.
Save the trust file, then run these (replace the path with where you saved it):
setx REQUESTS_CA_BUNDLE "C:\Users\YOU\Downloads\techloq.crt" setx SSL_CERT_FILE "C:\Users\YOU\Downloads\techloq.crt" setx NODE_EXTRA_CA_CERTS "C:\Users\YOU\Downloads\techloq.crt" pip config set global.cert "C:\Users\YOU\Downloads\techloq.crt" git config --global http.sslCAInfo "C:\Users\YOU\Downloads\techloq.crt" npm config -g set cafile "C:\Users\YOU\Downloads\techloq.crt"
Then close and reopen your terminals.
Some boxes tick themselves as you test. Tick the rest yourself once you've done them — your progress is saved on this device.