[HOW to] How to disable alternative WebUI from windows command line #22307
KamikazeePL
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
How to disable alternative WebUI from windows command line
Run command line
curl -X POST "http://QBITTORRENT-IP:QB-PORT/api/v2/auth/login" --data "username=ADMIN&password=PASSWORD" -c cookies.txt
This command is to save cookies for 2. command
curl -X POST "http://QBITTORRENT-IP:QB-PORT/api/v2/app/setPreferences" --data-urlencode "json={\"alternative_webui_enabled\": \"false\"}" -b cookies.txt
QBITTORRENT-IP - change it to IP address of qBitTorrent
QB-PORT - change it to PORT of qBitTorrent
ADMIN - change it to your user name to login to WebUI
PASSWORD - change it to your password to login to WebUI
Beta Was this translation helpful? Give feedback.
All reactions