https://bugs.winehq.org/show_bug.cgi?id=56417
Louis Lenders xerox.xerox2000x@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Component|-unknown |programs Status|UNCONFIRMED |NEW CC| |xerox.xerox2000x@gmail.com Keywords| |download Ever confirmed|0 |1 URL| |https://w3dhub.com/
--- Comment #1 from Louis Lenders xerox.xerox2000x@gmail.com --- Confirming + add some info.
The problem seems it tries to run some powershell scripts, whereas powershell is a complete stub in wine: 0160:fixme:powershell:wmain argv[0] L"powershell" 0160:fixme:powershell:wmain argv[1] L"-inputformat" 0160:fixme:powershell:wmain argv[2] L"none" 0160:fixme:powershell:wmain argv[3] L"-ExecutionPolicy" 0160:fixme:powershell:wmain argv[4] L"RemoteSigned" 0160:fixme:powershell:wmain argv[5] L"-File"
The scripts are deleted again by the installer (cmd /c del *.ps1) but if you disable cmd.exe you can find them in the temp directory). For completeness I post content of the three scripts below. You can use this powershell wrapper that's made for Waves Central: https://github.com/PietJankbal/powershell-wrapper-for-wine. After install that I was able to get the main window up.
For completeness here's content of the three scripts that it tries to run:
Write-Host (Invoke-WebRequest -UseBasicParsing -URI "https://dotnetcli.azureedge.net/dotnet/WindowsDesktop/7.0/latest.version%22)...;
Invoke-WebRequest -UseBasicParsing -URI "https://dotnetcli.azureedge.net/dotnet/Runtime//windowsdesktop-runtime--win-..." -OutFile "C:\users\louis\Temp\nse9d1e.tmp.exe"
dotnet --list-runtimes | % { if($_ -match ".*WindowsDesktop.*(7.0.\d+).*") { $matches[1] } } | Sort-Object {[int]($_ -replace '\d.\d.(\d+)', '$1')} -Descending | Select-Object -first 1