Upon Post Uninstall, what's the correct action needed to delete the shortcut from the Start Menu under Programs? The shortcut shows a folder with the name of my program - and underneath it, it just shows "(Empty)" after the uninstall is complete.
I'd like to remove that shortcut altogether. I tried this:
but it didn't seem to do anything.
Please advise. Thank you!
I'd like to remove that shortcut altogether. I tried this:
Code:
result = Folder.DoesExist(SessionVar.Expand("%AppFolder%"));
if(result == true) then
Folder.Delete(SessionVar.Expand("%AppFolder%"));
end
Please advise. Thank you!