Update windows-x86-x64.yml

This commit is contained in:
TheTank20
2025-07-23 10:35:25 -05:00
committed by GitHub
parent 424f966e32
commit 3d6bf59057

View File

@@ -216,16 +216,17 @@ jobs:
throw "Input file .\umskt.exe does not exist!"
}
# Prepare ResHacker script (no indentation inside block!)
$resourceHackerScript = @"
[FILENAMES]
Exe=.\umskt.exe
SaveAs=.\umskt_comp.exe
[DELETE]
Icon=*
IconGroup=*
"@
# Prepare ResHacker script
$resourceHackerScript = @(
"[FILENAMES]",
"Exe=.\umskt.exe",
"SaveAs=.\umskt_comp.exe",
"",
"[DELETE]",
"Icon=*",
"IconGroup=*"
) -join "`r`n"
$iniPath = "$env:TEMP\remove_icons.ini"
$logPath = "$env:TEMP\reshacker_log.txt"