According to this answer, I would like to make this C# method call, but from the command line:
InternetSetOption(IntPtr.Zero, 39, IntPtr.Zero, 0);
My attempt (from CMD):
rundll32.exe,InternetSetOption(0,39,0,0)
Unfortunately, this leads to an error (translated: Problem while starting: wrong parameter
):
How can I make this DLL function call? What is the CMD equivalent of the C# IntPtr.Zero
?