You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
can you tell what is the requirements to run this on Windows 7? I assume you need msvc redistributable but what about .NET 8? AFAIK it is does not support Win7.
If you provide this information I can update readme then with instructions.
The text was updated successfully, but these errors were encountered:
Even though .NET 7+ officially dropped support for Windows 7, they still kept the old code paths, so it still works (and likely in .NET 8 and 9 too).
The main problem when running .NET 7+ apps on Windows 7 is W^X (Write XOR Execute). This security feature was opt-in for .NET 6.0 but became default in .NET 7+. On Windows 7, this causes excessive memory usage and CPU spikes when launching and closing applications (observable with WinDepends).
To fix this, just add this environment variable:
set DOTNET_EnableWriteXorExecute=0
So if anyone want to run WinDepends on Windows 7, here’s the requirement:
Notes on WinDepends and Windows 7 Symbol Compatibility
If you're using WinDepends on Windows 7, the stock dbghelp.dll in system32 won’t work.
You'll need dbghelp.dll and symsrv.dll version 10.0.18362.1, which you can obtain from WinDbg in the Windows 10 1903 SDK or download from the attachment below.
Download: (These files are digitally signed by Microsoft) dbghelp.zip
Originally posted by @i486 in #9
Hello,
can you tell what is the requirements to run this on Windows 7? I assume you need msvc redistributable but what about .NET 8? AFAIK it is does not support Win7.
If you provide this information I can update readme then with instructions.
The text was updated successfully, but these errors were encountered: