Windows SandboxでHSPのアプリを動かして検証していたのですが、最近動かなくなってしまいました。
・これはWindowsSandboxという特殊環境でのみ再現性があります
・「デジタル署名のないアプリが動かない」バグがStackOverFlowにあったものの、私の環境では非HSPのexeは動きました
・以下のメッセージが表示されて、起動できませんでした。
(これはWindows10Sモードの表示ですが、SandboxはSじゃないです)
Search for app in the Store?
You need to install an app for this task.
Would you like to search for one in the Store?
ホストOS:Windows 11 Pro 23H2 22635.3140(Insider Preview)
Sandbox: Windows 11 Enterprise 22H2 22621.3140
・以下のコマンドをPowershellで実行すると実行はできましたが、IEの実行確認ウィンドウが挟まれました。
これはStackOverFlowにあったやつなので、実機ではやらないでください。
Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\System" -Name "EnableSmartScreen" -Type DWord -Value 0
If (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\MicrosoftEdge\PhishingFilter")) {
New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\MicrosoftEdge\PhishingFilter" -Force | Out-Null
}
Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\MicrosoftEdge\PhishingFilter" -Name "EnabledV9" -Type DWord -Value 0
多分Sandbox側に問題があるのだと思いますが、ホストがInsiderPreviewということもあり、実機に波及する可能性もあるので報告しました。
現時点では普通のWindowsでは問題なく実行できます。
続報あれば書き込みます。