Hi guys, i have a script to change some icons in windows 10, because current icons are fugly Func SizeCheck()
FileCopy(@WindowsDir & "\system32\imageres.dll", @ScriptDir & "\check-imageres.dll", 1)
sleep(2500)
local $size1 = Round(FileGetSize(@ScriptDir & "\check-imageres.dll") / 1048576, 1)
local $size2 = Number(IniRead(@ScriptDir & "\FileSize.ini", "Sizes", "ImageRes.dll", "0"))
TrayTip("Icon Changer", "Current size is " & $size1, 0, $TIP_ICONASTERISK)
sleep(2500)
TrayTip("Icon Changer", "Patched file size is " & $size2, 0, $TIP_ICONASTERISK)
sleep(2500)
;FileDelete(@ScriptDir & "\check-imageres.dll")
if $size1 = $size2 Then
Return True
Else
Return False
EndIf
EndFuncmy problem is that the file reports 57.3mb in the destination, but when i copy it to the workdir, its 54.4mb anyone knows what the hell is up with that? Damian