Windower公式Discordを見れば分かると思うのですが、Windowerは結構な頻度で更新されています。

2025/2/6のアプデから以下の文を抜粋しましたので、エラーが多発している人はご確認ください。
Windower 4.6 Update
- Known issues:
- Some users are having the launcher improperly flagged by Windows as malicious software. Please be patient while we work on a fix.
- Windower launcher now requires .NET 4.8 (up from 4.5). This may require a manual update especially for linux users (<- click me!)
- Cannot bind semicolon
- There is an issue with MMF
- if Windower launcher crashes while starting up, try deleting
windower\updates
and try again. (Or make sure you have .NET 4.8) exec
console command currently not working with quotes around the filename. (meaning that file/folder names with spaces won’t typically work). Please be patient while we work on a fix, but in the meantime try it without quotes.- If you bind the backslash key (
\
) using multiple backslashes using\\\\
or\\
in your command, try fewer backslashes (such as\
or\\
) while we decide if we want to change that behavior. - a fix has been released for addons using text boxes. Will move this down to resolved if/when it appears to have worked for everyone.
- Certain users (perhaps those that are on ARM processors?) are unable to see the windower (red text) console in game. If this is you, consider helping us debug it in support by offering to test/try stuff for us. Thanks!
- Resolved issues:
- if you crash when launching into the game (after POL), then you probably just need to close all instances of the game and windower before launching new ones. (So that all instances are using the same version of windower)
- The new issues with binds have been resolved (aside from semicolon).
目次
.net Frameworkのバージョンを確認する方法
PowerShellに次のコマンドを貼り付けて実行するだけで、お使いのバージョンを確認できます。
$release = Get-ItemPropertyValue -LiteralPath 'HKLM:SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full' -Name Release
switch ($release) {
{ $_ -ge 533320 } { $version = '4.8.1 or later'; break }
{ $_ -ge 528040 } { $version = '4.8'; break }
{ $_ -ge 461808 } { $version = '4.7.2'; break }
{ $_ -ge 461308 } { $version = '4.7.1'; break }
{ $_ -ge 460798 } { $version = '4.7'; break }
{ $_ -ge 394802 } { $version = '4.6.2'; break }
{ $_ -ge 394254 } { $version = '4.6.1'; break }
{ $_ -ge 393295 } { $version = '4.6'; break }
{ $_ -ge 379893 } { $version = '4.5.2'; break }
{ $_ -ge 378675 } { $version = '4.5.1'; break }
{ $_ -ge 378389 } { $version = '4.5'; break }
default { $version = $null; break }
}
if ($version) {
Write-Host -Object ".NET Framework Version: $version"
} else {
Write-Host -Object '.NET Framework Version 4.5 or later is not detected.'
}
実行結果
.NET Framework Version: 4.8.1 or later
コメント