However, when this code executes, all I see in the file is this:
Var /GLOBAL Log
StrCpy $Log "$DESKTOP\Uninstall_Log.txt"
Var /GLOBAL LogFile
FileOpen $LogFile $Log w
FileWrite $LogFile "Uninstall Log$\r$\n"
FileClose $LogFile
;Do some other stuff
FileOpen $LogFile $Log a
FileWrite $LogFile "Version: $Version$\r$\n"
FileClose $LogFile
Version: 6.3Why is it not appending to the file?