With NSIS 3.07 defaulting to unicode I checked my scripts and found errors because i use the nsisdt plugin. Unfortunately there is no unicode version of the plugin.
Has anyone a working example getting the date via windows API?
this is the code snippet I use for ANSI builds
Has anyone a working example getting the date via windows API?
this is the code snippet I use for ANSI builds
PHP Code:
StrCpy $0 "%d.%m.%Y - %H.%M Uhr"
nsisdt::currentdate
StrCpy "$Datum" "$0"
Comment