Changes between Initial Version and Version 1 of Ticket #3987, comment 9


Ignore:
Timestamp:
04/12/24 01:09:10 (4 weeks ago)
Author:
mLipok
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3987, comment 9

    initial v1  
    22No, it did not fix. For some reason it still creates the localappdata folder.
    33If I change:
    4 {{{
     4{{{#!autoit
    55Global $TempDir = _WinAPI_ExpandEnvironmentStrings(IniRead($AutoIt3WapperIni, "Other", "TempDir", ""))
    66If Not FileExists($TempDir) Or $TempDir = "" Then
     
    1111}}}
    1212to
    13 {{{
     13{{{#!autoit
    1414Global $TempDir = _WinAPI_ExpandEnvironmentStrings(IniRead($AutoIt3WapperIni, "Other", "TempDir", ""))
    1515MsgBox("", "", $TempDir)
     
    2424
    2525Also, I think
    26 {{{
     26{{{#!autoit
    2727If Not FileExists($TempDir) Or $TempDir = "" Then
    2828}}}
    2929should be changed to
    30 {{{
     30{{{#!autoit
    3131If $TempDir <> "" And FileExists($TempDir) And Not FileExists($TempDir & "\AutoIt v3\Aut2exe") Then
    3232        DirCreate($TempDir & "\AutoIt v3\Aut2exe")