This is what I have, and this is what I have tried: Hardware: Raspberry Pi 2 Model B OS: Windows 10 IoT Core Build 10.0.10240 Driver: WinPcap Version 4.1.3 (installed and verified via DevCon.exe command) Environment: Remote PowerShell session Install files attempted: Wireshark-win32-1.12.7.exe, Wireshark-win64-1.12.7.exe, WiresharkPortable-1.12.7.paf.exe Command used: start [setupFilePath\setupFileName] /S Results: This command cannot be run due to the error: This version of %1 is not compatible with the version of Windows you're running. Check your computer's system information and then contact the software publisher. + CategoryInfo : InvalidOperation: (:) [Start-Process], InvalidOperationException + FullyQualifiedErrorId : InvalidOperationException,Microsoft.PowerShell.Commands.StartProcessCommand If anyone knows how to install Wireshark on Windows 10 IoT Core (loaded on RPi2), please help me accomplish this. Is there a way to install just TShark through command line? asked 08 Oct '15, 09:58 areue edited 08 Oct '15, 14:27 Guy Harris ♦♦ |
One Answer:
Question 22 in the Raspberry Pi FAQ is answered:
Note the repeated appearance of the string "ARM" and the complete lack of the strings "x86", "x64", "AMD64", or "x86-64". The Wireshark 1.12 buildbot has builders for: Note the complete lack of the string "ARM" on the main buildbot page. So NO version of Wireshark, as built by the Wireshark buildbots, is capable of running on a Raspberry Pi, or any other ARM-based machine, if it's running Windows. (There are probably ARM Linuxes for which there are Wireshark builds, but we don't do those builds.) "This version of %1 is not compatible with the version of Windows you're running." means that the ".exe" files are x86 or x64 binaries and the version of Windows you're running is, by virtue of running on an ARM processor, incapable of running that binary. (And, no, this isn't a Wireshark vs. TShark issue - both the Wireshark and TShark binaries are x86/x64 binaries in the Wireshark builds, so neither of them will work on your RPi.) We would have to add a buildbot to build a version of Wireshark for ARM Windows in order for there to be a version of Wireshark that could be installed on a Raspberry Pi running Windows. But, first, there would have to be a WinPcap build for ARM as well, unless you're willing to run Wireshark or TShark without it being able to capture any network traffic. answered 08 Oct '15, 14:25 Guy Harris ♦♦ edited 08 Oct '15, 14:27 |
I'm curios to know where you found the following?
Driver: WinPcap Version 4.1.3 (installed and verified via DevCon.exe command)
I've got the need for WinPcap for Win10 IoT, but I've not found this available anywhere yet. I'm tempted to hack the build scripts to build my own copy, but if this has already been done by somebody I'd prefer to use what works.