TechConcierge MTL — diagnostic pack

One line on the client's PC does the whole session: it reads the machine, opens a report on the Desktop, sends it to this site, then waits in the same window for the fix. Read-only until you press y.

The line — short enough to type when the clipboard does not work

iex(irm https://tc.atashjamalluddin.com/d)
Open this page in the client's own browser, on the client's PC, then Copy: the clipboard rarely crosses TeamViewer or Quick Assist. Windows key → type powershell → Enter, paste, Enter. Capital letters do not matter. For the administrator version: right-click Windows PowerShell → Exécuter en tant qu'administrateur first, same line.

Never through Windows+R, never as one command line

Defender's « ClickFix » guard flags powershell -c "iex(irm …)" typed in the Run box or a shortcut as a trojan, because that is exactly how a scam page tricks people. It does not flag the same line typed inside an open PowerShell window, which is why the lines above work. If Defender ever objects anyway (a red « Operation did not complete successfully because the file contains a virus » line), use the two-step fallback below: the download and the run are separate, and the file is plain text Defender can read.
curl.exe -s -o $env:TEMP\tc.ps1 https://tc.atashjamalluddin.com/a; powershell -ep bypass -File $env:TEMP\tc.ps1

What happens in that window

  1. Two questions: Defender quick scan (5–10 min) and, as admin, AdwCleaner (8 MB download, scan only). Answer y or n.
  2. Sections print for about 20 seconds, then the verdict, then the report opens from the Desktop and the window shows CODE: XXXXXX.
  3. Give the code to Claude at the studio (python bridge.py get CODE). Talk the report through with the client meanwhile.
  4. The window keeps checking every 10 seconds. When Claude has published the fix it prints « A fix is ready… Run the fix now? y/N ». Press y. That is the second command, gone.
  5. The fix creates a restore point, moves files to C:\TechConcierge\quarantine instead of deleting, logs each step to the Desktop and sends the log back (python bridge.py log CODE). It waits 90 minutes at most; press Q to stop early.

Auto lane — Claude writes the fix without the studio

iex(irm https://tc.atashjamalluddin.com/a)
Same diagnostic, same window. After the upload, the site sends the report to Claude (Sonnet 5 the first time on a machine, Opus 5 if the client comes back, Fable 5.1 the third time) and publishes the fix in 30 seconds to 3 minutes. The window then asks « Run the fix now? y/N » as usual. Claude may only pick from the reversible helpers, and every action is checked against the report before it is written; refused actions are listed in the fix header. Costs a few cents per report on the Anthropic API key set on the site. If no key is set, the line behaves like the manual one.

Fix line by hand — only if the window was closed

Type the 6-character code, then copy or type the line. Same window rules as above. Valid 7 days after the diagnostic.
iex(irm https://tc.atashjamalluddin.com/f/CODE)

On site — double-click instead of typing

⬇ diag.cmd⬇ diag-admin.cmd (asks for administrator)
Put them on your USB key once. Double-click on the client's PC: a black window downloads the pack to a file and runs it (no one-line trick, so Defender stays quiet). Windows may show « Voulez-vous vraiment exécuter ce fichier ? » for a downloaded file: click Exécuter. Not for remote sessions: a browser can never open PowerShell from a link, on purpose.

If the line refuses to run

« irm » missing = Windows 7 or PowerShell 2: iex (New-Object Net.WebClient).DownloadString('https://tc.atashjamalluddin.com/d').
« running scripts is disabled » never applies: the line runs in memory, no script file is involved.
A password box that never appears = a standard account asked for admin through a remote session. Use the plain window; admin-only steps are redone on site.
No internet on the PC: the network section of the report is the diagnosis; fix the connection first.
Also answers at techconcierge.atashjamalluddin.com. Source: 4 - TECHCONCIERGE\DIAG\diag.ps1. Redeploy with DEPLOY.bat.