Please let me know How to get current Unix timestamp in Inno Setup?

link|improve this question
Sorry, not a programming question, please try superuser.com or serverfault.com . (I didn't downvote your question). Good luck. – shellter Jan 12 at 14:16
@Shelter - Yes it is, InnoSetup has built in Pascal script and that is the only way you might be able to get the unit timestamp. – Robert Love Jan 12 at 15:59
feedback

1 Answer

up vote 1 down vote accepted

The easiest way is to use the time() function from the C runtime library, which has the following return value:

Return the time as seconds elapsed since midnight, January 1, 1970, or -1 in the case of an error.

which is exactly what the unix timestamp is.

Now it's a simple matter of importing that function into Inno Setup scripting. Since the scripting environment doesn't know pointers the parameter (which luckily need not point to a valid buffer, see the linked documentation) is given as integer and you must pass a 0 for it:

function Time(ATimerPtr: integer): integer; external '_time32@msvcrt.dll cdecl';

function InitializeSetup(): Boolean;
begin
  MsgBox(Format('unix timestamp: %d', [Time(0)]), mbInformation, MB_OK);
end;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.