- Joined
- Feb 11, 2008
- Messages
- 612 (0.10/day)
- Location
- DFW, Texas, USA
System Name | Built By Me |
---|---|
Processor | AMD 9800X3D |
Motherboard | Gigabyte X870 Aorus Elite WiFi7 |
Cooling | Water Cooling - CPU Only - Heatkiller IV Pro - TG PhaseSheet PTM |
Memory | 32GB (2 x 16) - GSkill FlareX5 DDR5 6000 Mhz |
Video Card(s) | RTX 4080 - ASUS ROG Strix 16GB OC - P Mode |
Storage | 2TB Inland Performance Plus NVMe |
Display(s) | Alienware AW2723DF @ 280 Hz @ 1440P |
Case | Fractal Design Define S2 |
Audio Device(s) | Corsair Virtuoso Pro Headset |
Power Supply | 1000W MSI MPG A1000G PCIE5 |
Mouse | Razer Viper V3 Pro @ 2k Hz |
Keyboard | Asus ROG Strix Scope II 96 Wireless - ROG NX Snow Switches |
Software | Windows 11 Pro |
I have written a small program in C Sharp in Visual Studio that basically just downloads a file from one of our company's repositories and then replaces whatever file is currently on a technician's laptop.
I have two backgroundWorkers that get ran whenever the button is clicked to begin the download. One worker is busy doing the actual SFTP download and the other worker is busy monitoring the file size of the file being downloaded to determine the download progress.
The issue I am running into is, half of the laptops are displaying the download progress and the other half are not displaying the download progress. All of them are actually downloading the file though. I can not understand why all of the laptops are not displaying the download progress. The code is the same, I only have one version of the program.
Troubleshooting I have done so far:
I have two backgroundWorkers that get ran whenever the button is clicked to begin the download. One worker is busy doing the actual SFTP download and the other worker is busy monitoring the file size of the file being downloaded to determine the download progress.
The issue I am running into is, half of the laptops are displaying the download progress and the other half are not displaying the download progress. All of them are actually downloading the file though. I can not understand why all of the laptops are not displaying the download progress. The code is the same, I only have one version of the program.
Troubleshooting I have done so far:
- The laptops are either Windows 7 or Windows 10. I have physically verified that the program works correctly regardless of the OS (when it is working).
- The program was built with the "Any CPU" flag, so 32/64 bit should not matter.
- Verified that at least .NET Framework 4 was installed (that was my target framework)