Hi,
I have a application that runs on users PC and their is a code that check for any updates for that application when it's started.
Here is the process
1) Application checks for a update.
2) if there is a update copies the new file to the users desktop and delete the old file.
Now that's where I am having the logic issue to delete the old file I have to kill the process first that is running and when I kill the process the whole application closes and the code is not executed to delete the old file.
If $VersionNoU > $VersionNo then
MsgBox(0, "New Version", "New Version")
Filecopy($URL, @UserProfileDir & "\Desktop", 1)
Local $list = ProcessList()
For $i = 1 To $list[0][0]
If StringRegExp($list[$i][0], "^AppName.*$") Then ProcessClose($list[$i][0])
Next
$Del = Execute($DelPath)
MsgBox(0,"test", $Del)
FileDelete($Del)