You are here

How do I remove an App?

14 posts / 0 new
Last post
truthseeker
truthseeker's picture
Offline
Last seen: 11 years 11 months ago
Joined: 2008-07-30 20:32
How do I remove an App?

How can I totally remove an APP so it doesn't show in the menu anymore?

And are there any plans to add a feature in the PortableApps Options menu that allows to remove apps?

Thank you

Bensawsome
Offline
Last seen: 2 years 3 months ago
Joined: 2006-04-22 19:27
Just delete the folder for

Just delete the folder for the app in the X:\PortableApps folder.
So if you wanted to get rid of Firefox then you would delete the X:\PortableApps\FirefoxPortable folder (with X the letter of your usb drive)
Thanks,
Bensawsome

 iLike Macs, iPwn, However you put it... Apple is better ^_^ 
"Claiming that your operating system is the best in the world because more people use it is like saying McDonalds makes the best food in the world..."

kai.inouye
kai.inouye's picture
Offline
Last seen: 12 years 5 months ago
Developer
Joined: 2008-02-03 20:12
To remove an app you need to

To remove an app you need to go to the PortableApps folder in your drive and delete the folder.
if you want to remove Firefox etc. you will see a folder in PortableApps
called FirefoxPortable etc.

truthseeker
truthseeker's picture
Offline
Last seen: 11 years 11 months ago
Joined: 2008-07-30 20:32
wow, how easy is that? :)

wow, how easy is that? Smile thanks

gmbudwrench
gmbudwrench's picture
Offline
Last seen: 2 months 3 weeks ago
Joined: 2007-06-25 05:00
Be sure

to click the X on the menu and close the menu first. Once you've deleted the app, you can go back and reopen the menu and continue using it.

digitxp
digitxp's picture
Offline
Last seen: 12 years 8 months ago
Joined: 2007-11-03 18:33
I do!

I do want to make an application that uninstalls but I haven't started it as I'm a type of person that doesn't finish his big ideas. But then again I could get started now...

Insert original signature here with Greasemonkey Script.

truthseeker
truthseeker's picture
Offline
Last seen: 11 years 11 months ago
Joined: 2008-07-30 20:32
You may be the local

You may be the local procrastination leader Smile

Procrastinators have a saying, "why do today what I can do tomorrow."

digitxp
digitxp's picture
Offline
Last seen: 12 years 8 months ago
Joined: 2007-11-03 18:33
Actually

I'm procrastinating because the Delphi in a NutShell book still get into the library.:P

Insert original signature here with Greasemonkey Script.

ZachHudock
ZachHudock's picture
Offline
Last seen: 1 year 4 months ago
Developer
Joined: 2006-12-06 18:07
google takes less time ;) try

google takes less time Wink

try these links:

http://delphi.about.com/

http://www.torry.net/

The developer formerly known as ZGitRDun8705

digitxp
digitxp's picture
Offline
Last seen: 12 years 8 months ago
Joined: 2007-11-03 18:33
Okay

but the other problem is that I'm lacking a compiler as well as 300 MB...

Insert original signature here with Greasemonkey Script.

ZachHudock
ZachHudock's picture
Offline
Last seen: 1 year 4 months ago
Developer
Joined: 2006-12-06 18:07
those would be issues.....

those would be issues.....

The developer formerly known as ZGitRDun8705

truthseeker
truthseeker's picture
Offline
Last seen: 11 years 11 months ago
Joined: 2008-07-30 20:32
lol, yep thats for sure :-)

lol, yep thats for sure Smile

Ed_P
Offline
Last seen: 5 years 7 months ago
Joined: 2007-02-19 09:09
This works

Add this to your USB stick. Whenever you want to delete an app, shutdown the PAM and dbl click on this script.

DelPAapp.cmd
@echo off&Mode CON Lines=6 COLS=72&Color 1F
@Title PortableApps App Delete - make sure PAM has been shutdown.

:PANAME
set PortableApp=
set /p PortableApp= Enter the name of the PortableApp to delete or Q to Exit:

if /I %PortableApp%! EQU Q! exit
if /I %PortableApp%! EQU ! exit

if not exist \PortableApps\%PortableApp%\ (
echo.
echo %PortableApp% not found!
echo.
goto PANAME )

rd /S /Q \PortableApps\%PortableApp%
if not errorlevel = 1 (
echo.
echo %PortableApp% deleted.)

pause > nul

Ed

truthseeker
truthseeker's picture
Offline
Last seen: 11 years 11 months ago
Joined: 2008-07-30 20:32
Sorry, I have no idea what

Thanks, but I tried your script and it asks me to type the name of the app I want to remove.

it's too hard to look at the exact name, and then type in the long word into the script. Too much work Blum thanks anyway, but its just easier to scroll and manually delete the folder.

Log in or register to post comments