FYI, this seems to work in PowerShell:
(new-object Net.WebClient).DownloadFile( 'http://192.168.1.41:5004/tuner3/v20.1?duration=6000', 'NUL:')
No error and no file that I can find.
Send HTTP Recording Stream to NUL?
-
- Posts: 82
- Joined: Fri Mar 11, 2011 7:10 pm
Re: Send HTTP Recording Stream to NUL?
Winner winner chicken dinner!!! I wasn't sure if this would be able to multithread or not, but it works perfect using the "ForEach-Object -Parallel" cmdlet. This solution does not seem to have a 2GB limitation, and I am able to retrieve all of the data available from my HDHR devices. Many thanks!wtg wrote: Mon Jun 16, 2025 5:46 pm FYI, this seems to work in PowerShell:
(new-object Net.WebClient).DownloadFile( 'http://192.168.1.41:5004/tuner3/v20.1?duration=6000', 'NUL:')
No error and no file that I can find.