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
According to this list the plugin Kstudio.MaxscriptExplorer has a download issues with WinGup v5.0.4.
I have debugged this issue and found that WinGup uses the file name part of the plugin download URL to generate the file name used to store the downloaded file. Additionally, if the file name doesn't end with .zip this string gets appended.
In case of Kstudio.MaxscriptExplorer this leads to an illegal file name since the download URL of this plugin is https://3d-kstudio.com/download-manager.php?id=112, thus the resulting file name gets set to %TEMP%\download-manager.php?id=112.zip.
The contained question mark is an illegal character for filesystem objects, thus the download fails because the file can not be stored.
Possible solutions
WinGup should test the generated file name for illegal characters and remove them.