Capture network traffic using windows built in tools
Start the capture:
netsh trace start capture=yes level=5 tracefile=c:\temp\%computername%_nettrace.etl scenario=netconnection
<reproduce the issue>
Stop the capture:
netsh trace stop
Convert the resulting file to wireshark format:
GitHub – microsoft/etl2pcapng: Utility that converts an .etl file containing a Windows network packet capture into .pcapng format.