For automated installs that cannot have UI interaction:
- https://www.telerik.com/docs/default-source/fiddler/fiddlersetup.exe
- https://www.telerik.com/download/fiddler/fiddler-osx-beta
- https://www.telerik.com/docs/default-source/fiddler/fiddler-mac.zip?sfvrsn=2
The install is “per user” as it is a user-local application; it installs in %LocalAppData%\Programs\Fiddler\Fiddler.exe
.
Docs
- 10 minute introduction video (far easier than reading all the docs) “Getting Started with Fiddler Web Debugging Proxy”: https://www.youtube.com/watch?v=gujBKFGwjd4
- https://www.telerik.com/videos/fiddler
- http://docs.telerik.com/fiddler/KnowledgeBase/UIGuide
- https://docs.telerik.com/fiddler/configure-fiddler/tasks/configurefiddler
Note that Fiddler acts as a HTTP proxy. When Fiddler starts, it hooks itself into the default WinINET proxy (which is used by any tool using the WinINET API, including Edge, Internet Explorer, Chrome, but not FireFox).
If you kill your Windows machine before stopping Fiddler, it cannot restore the WinINET proxy, so you have to do that by hand (otherwise you cannot browse web pages any more).
Manual restore:
- Run
"C:\Windows\System32\rundll32.exe" shell32.dll,Control_RunDLL inetcpl.cpl,,4
- Press “LAN settings” (Dutch: “LAN-Instellingen”)
- Uncheck the proxy server checkbox “Use a proxy server for your LAN” (Dutch “Een proxy-server voor uw LAN gebruiken”)
- Confirm
- Close the control panel wizard
–jeroen