I'm new to using Setup Factory (And let me tell you, it's very easy to use and does anything I need it to). What I want to do:
On a Post Uninstall, I want to check for a folder and a shortcut. If neither exist, I want to delete the folder.
Where'd I screw up? Lol.Code:if (not Folder.DoesExist("C:\\Documents and Settings\\All Users\\Start Menu\\My Apps\\AppsOne")) and (not File.DoesExist("C:\\Documents and Settings\\All Users\\Start Menu\\My Apps\\AppTwo.lnk")) then Folder.DeleteFolder("C:\\Documents and Settings\\All Users\\Start Menu\\My Apps\\", nil); end


