Many times, online installers download files in order to run. I need to back them up. Is there any tool or something to find out where the files are saved to?
Example:
Many times, online installers download files in order to run. I need to back them up. Is there any tool or something to find out where the files are saved to?
Example:
ProcMon from Sysinternals is the best tool for such tasks as it provides many rich features to capture/track what processes are/were doing on disks, network and registry.
https://docs.microsoft.com/en-us/sysinternals/downloads/procmon
Let it run for some seconds while downloading, then stop the capture, filter on the main and child processes of the program and on operations CreateFile and WriteFile.
The child processes may not be relevant if the download is done by the main process itself, but that depends on how the program was designed.
The easiest way to include the main and all of its child processes at once is by using the Process Tree (keyboard shortcut: CTRL + T) in the menu Tools. Just find the main process and right-click to add process and children to include filter. Unfortunately the Process Tree doesn't have a search function.
Note: Even if it's not an online installer, it's a similar approach.

Another option is the built-in Resource Monitor of Windows to see the current write operations on your disks, but without features to analyze it extensively.
Just search for Resource Monitor or resmon to open it and switch to tab Disk. In the second view Disk Activity you can sort the column Write (B/sec) descending to see the most write demanding processes and the affected files.
The process named in the column Image may not be the one you're looking for. It could also be System or svchost.
Keep the following in mind: