We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f279c35 commit f4e30a8Copy full SHA for f4e30a8
CreateMsix.ps1
@@ -31,6 +31,9 @@ try {
31
throw "$MakePriPath new failed with exit code ${LastExitCode}"
32
}
33
34
+ Set-ItemProperty -Path .\dist\bin\ecsact.exe -Name IsReadOnly -Value $false
35
+ Set-ItemProperty -Path .\dist\bin\ecsact_rtb.exe -Name IsReadOnly -Value $false
36
+
37
& $SignToolPath sign `
38
/debug /fd SHA384 `
39
/f $CertPath `
@@ -43,6 +46,9 @@ try {
43
46
throw "Signing dist binaries failed with exit code ${LastExitCode}"
44
47
45
48
49
+ Set-ItemProperty -Path .\dist\bin\ecsact.exe -Name IsReadOnly -Value $true
50
+ Set-ItemProperty -Path .\dist\bin\ecsact_rtb.exe -Name IsReadOnly -Value $true
51
52
& $MakeAppxPath pack /v /o /h SHA384 /d .\dist\ /p $MsixPath
53
54
if(-not $?) {
0 commit comments