Jump to content

How to remove WinRAR in programs?


Recommended Posts

Hello,

First sorry for my english I'm french

I want to know how to remove Winrar group in start folder ...

I tried :

RD /s /q "%ALLUSERSPROFILE%\Menudm~1\Programmes\WinRAR" (in french)

And it doesn't work :(

How to do please?

Link to comment
Share on other sites


Hello,

First sorry for my english I'm french

I want to know how to remove Winrar group in start folder ...

I tried :

RD /s /q "%ALLUSERSPROFILE%\Menudm~1\Programmes\WinRAR" (in french)

And it doesn't work :(

How to do please?

Link to comment
Share on other sites

Don't work, I'm trying all solution I think but nothing work I don't undersant :s

RD /S /Q "%AllUsersProfile%\Menu Démarrer\Programmes\WinRAR"

don't work

RD /S /Q "%UserProfile%\Menu Démarrer\Programmes\WinRAR"

don't work too

Is it in register?

For Adobe Reader Speed Launch, I've tried to delete c:\windows\installer\{a_lot_of_numbers}\SC_Reader.exe, the program don't launch because the exe is delete but there is always the icon in start folder :(

Can somebody help me please :(

Link to comment
Share on other sites

well first i assume you tried deleting both at the same time, and second perhaps %AllUsersProfile% and %UserProfile% are different in your language try translating it to your language or fiding out what they might be or if all else fails simply type c:\yadda...yadda...yadda

Link to comment
Share on other sites

RD /S /Q "%AllUsersProfile%\Menu Démarrer\Programmes\WinRAR"

don't work

RD /S /Q "%UserProfile%\Menu Démarrer\Programmes\WinRAR"

Your problem is here é, I think. I saw this problem before.

Link to comment
Share on other sites

i dunno from ho it is but i have this on my pc so no credit to me:

1- Icon Issues.

After you finish installing all your apps, there are nine locations at which you need to have a look for shortcuts and shortcut folders you want to delete:

QUOTE 

C:\Documents and Settings\Administrator\Desktop\

C:\Documents and Settings\Administrator\Start Menu\

C:\Documents and Settings\Administrator\Start Menu\Programs\

C:\Documents and Settings\Administrator\Start Menu\Programs\Startup\

C:\Documents and Settings\Administrator\Application Data\Microsoft\Internet Explorer\Quick Launch\

C:\Documents and Settings\All Users\Desktop\

C:\Documents and Settings\All Users\Start Menu\

C:\Documents and Settings\All Users\Start Menu\Programs\

C:\Documents and Settings\All Users\Start Menu\Programs\Startup\

(I assume you log in as the Administrator.)

These are examples:

--------------------------

C:\Documents and Settings\Administrator\Desktop\

- Ad-aware 6.0.lnk

- Ad-watch 3.0.lnk

- FlashGet.lnk

del "%USERSPROFILE%\Desktop\Ad-aware 6.0.lnk"

del "%USERSPROFILE%\Desktop\Ad-watch 3.0.lnk"

del %USERSPROFILE%\Desktop\FlashGet.lnk

C:\Documents and Settings\Administrator\Start Menu\

- I can't see any.lnk 

del "%USERSPROFILE%\Start Menu\I can't see any.lnk"

C:\Documents and Settings\Administrator\Start Menu\Programs\

- Internet Explorer.lnk

- Windows Media Player.lnk

- Remote Assistance.lnk

del "%USERSPROFILE%\Start Menu\Programs\Internet Explorer.lnk"

del "%USERSPROFILE%\Start Menu\Programs\Windows Media Player.lnk"

del "%USERSPROFILE%\Start Menu\Programs\Remote Assistance.lnk"

C:\Documents and Settings\Administrator\Start Menu\Programs\Startup\

- I can't see any.lnk 

del "%USERSPROFILE%\Start Menu\Programs\Startup\I can't see any.lnk"

C:\Documents and Settings\Administrator\Application Data\Microsoft\Internet Explorer\Quick Launch\

-Windows Media Player.lnk

del "%APPDATA%\Microsoft\Internet Explorer\Quick Launch\Windows Media Player.lnk"

C:\Documents and Settings\All Users\Desktop\

- Adobe Reader 6.0.lnk

- Mozilla.lnk

- QuickTime Player.lnk

- DAEMON Tools.lnk

del "%ALLUSERSPROFILE%\Desktop\Adobe Reader 6.0.lnk"

del %ALLUSERSPROFILE%\Desktop\Mozilla.lnk

del "%ALLUSERSPROFILE%\Desktop\QuickTime Player.lnk"

del "%ALLUSERSPROFILE%\Desktop\DAEMON Tools.lnk"

C:\Documents and Settings\All Users\Start Menu\

- New Office Document.lnk

- Open Office Document.lnk

- Set Program Access and Defaults.lnk

- Windows Catalog.lnk

- Windows Update.lnk

del "%ALLUSERSPROFILE%\Start Menu\New Office Document.lnk"

del "%ALLUSERSPROFILE%\Start Menu\Open Office Document.lnk"

del "%ALLUSERSPROFILE%\Start Menu\Set Program Access and Defaults.lnk"

del "%ALLUSERSPROFILE%\Start Menu\Windows Catalog.lnk"

del "%ALLUSERSPROFILE%\Start Menu\Windows Update.lnk"

C:\Documents and Settings\All Users\Start Menu\Programs\

- Adobe Reader 6.0.lnk

- MSN Messenger 6.2.lnk

- PrintMe Internet Printing (shortcut folder)

- WinZip (shortcut folder)

del "%ALLUSERSPROFILE%\Start Menu\Programs\Adobe Reader 6.0.lnk"

del "%ALLUSERSPROFILE%\Start Menu\Programs\MSN Messenger 6.2.lnk"

RD /S /Q "%ALLUSERSPROFILE%\Start Menu\Programs\PrintMe Internet Printing"

RD /S /Q "%ALLUSERSPROFILE%\Start Menu\Programs\WinZip"

C:\Documents and Settings\All Users\Start Menu\Programs\Startup\

- InstallRite.lnk

del "%ALLUSERSPROFILE%\Start Menu\Programs\Startup\InstallRite.lnk"

As you can see, some apps install for the current user (the log-in user) and others install for all users (per machine).

So, you'll probably use both variables: %USERSPROFILE% and %ALLUSERSPROFILE%.

If the above examples are applicable to your situation, then you should plan to add these lines to your batch file for a future installation:

QUOTE 

del "%USERSPROFILE%\Desktop\Ad-aware 6.0.lnk"

del "%USERSPROFILE%\Desktop\Ad-watch 3.0.lnk"

del %USERSPROFILE%\Desktop\FlashGet.lnk

del "%USERSPROFILE%\Start Menu\Programs\Internet Explorer.lnk"

del "%USERSPROFILE%\Start Menu\Programs\Windows Media Player.lnk"

del "%USERSPROFILE%\Start Menu\Programs\Remote Assistance.lnk"

del "%APPDATA%\Microsoft\Internet Explorer\Quick Launch\Windows Media Player.lnk"

del "%ALLUSERSPROFILE%\Desktop\Adobe Reader 6.0.lnk"

del %ALLUSERSPROFILE%\Desktop\Mozilla.lnk

del "%ALLUSERSPROFILE%\Desktop\QuickTime Player.lnk"

del "%ALLUSERSPROFILE%\Desktop\DAEMON Tools.lnk"

del "%ALLUSERSPROFILE%\Start Menu\New Office Document.lnk"

del "%ALLUSERSPROFILE%\Start Menu\Open Office Document.lnk"

del "%ALLUSERSPROFILE%\Start Menu\Set Program Access and Defaults.lnk"

del "%ALLUSERSPROFILE%\Start Menu\Windows Catalog.lnk"

del "%ALLUSERSPROFILE%\Start Menu\Windows Update.lnk"

del "%ALLUSERSPROFILE%\Start Menu\Programs\Adobe Reader 6.0.lnk"

del "%ALLUSERSPROFILE%\Start Menu\Programs\MSN Messenger 6.2.lnk"

RD /S /Q "%ALLUSERSPROFILE%\Start Menu\Programs\PrintMe Internet Printing"

RD /S /Q "%ALLUSERSPROFILE%\Start Menu\Programs\WinZip"

del "%ALLUSERSPROFILE%\Start Menu\Programs\Startup\InstallRite.lnk"

However, the following strings can be replaced with this one:

del "%ALLUSERSPROFILE%\Start Menu\*.lnk"

QUOTE 

del "%ALLUSERSPROFILE%\Start Menu\New Office Document.lnk"

del "%ALLUSERSPROFILE%\Start Menu\Open Office Document.lnk"

del "%ALLUSERSPROFILE%\Start Menu\Set Program Access and Defaults.lnk"

del "%ALLUSERSPROFILE%\Start Menu\Windows Catalog.lnk"

del "%ALLUSERSPROFILE%\Start Menu\Windows Update.lnk"

2- Registry Issues.

1- Links: Some applications get integrated to Explorer shell by default or on purpose. If this is the case, I think there is no need for those apps to have links in Windows Explorer Toolbar or Internet Explorer Toolbar. Also, there are useless links.

Toolbar links are found under this registry tree:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Toolbar

Examples:

- Norton AntiVirus (Pro 2004 English Version)

REG DELETE "HKLM\SOFTWARE\Microsoft\Internet Explorer\Toolbar" /v {42CDD1BF-3FFB-4238-8AD1-7859DF00B1D6} /f

- FlashGet Bar (needs more testing!)

REG DELETE "HKLM\SOFTWARE\Microsoft\Internet Explorer\Toolbar" /v {E0E899AB-F487-11D5-8D29-0050BA6940E3} /f

- Discuss Button

REG ADD "HKCU\Software\Microsoft\Internet Explorer\Toolbar" /v ShowDiscussionButton /t REG_SZ /d No /f

2- Run: Some applications start with Windows and reside in memory. If those apps are integrated to the shell or are not used frequently by you , I think there is no need for those apps to start with your machine occupying a portion of memory.

Locations of "Run" strings in your Registry are here:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run

HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Run

Examples:

- Winamp Agent

REG DELETE HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v WinampAgent /f

- QuickTime Task

REG DELETE HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v "QuickTime Task" /f

- Mozilla Quick Launch

REG DELETE HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v "Mozilla Quick Launch" /f

- Internet Download Manager

REG DELETE HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v IDMan /f

Special Case:

- MSN Messenger

You can prevent MSN Messenger from starting with Windows by executing these commands from your batch file:

REG DELETE HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v MsnMsgr /f

REG ADD HKLM\SOFTWARE\Policies\Microsoft\Messenger\Client /v PreventAutoRun /t REG_DWORD /d 1 /f

Since the default value data is 0, you change it to 1.

If the above examples are applicable to your situation, then you should plan to add these lines to your batch file for a future installation:

QUOTE 

REG DELETE "HKLM\SOFTWARE\Microsoft\Internet Explorer\Toolbar" /v {42CDD1BF-3FFB-4238-8AD1-7859DF00B1D6} /f

REG DELETE "HKLM\SOFTWARE\Microsoft\Internet Explorer\Toolbar" /v {E0E899AB-F487-11D5-8D29-0050BA6940E3} /f

REG ADD "HKCU\Software\Microsoft\Internet Explorer\Toolbar" /v ShowDiscussionButton /t REG_SZ /d No /f

REG DELETE HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v WinampAgent /f

REG DELETE HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v "QuickTime Task" /f

REG DELETE HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v "Mozilla Quick Launch" /f

REG DELETE HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v IDMan /f

REG DELETE HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v MsnMsgr /f

REG ADD HKLM\SOFTWARE\Policies\Microsoft\Messenger\Client /v PreventAutoRun /t REG_DWORD /d 1 /f

You're advised to make those strings be the latest commands executed by your batch.

Link to comment
Share on other sites

you know whats wierd about winrar is that it will recreate the shortcut everytime you start the program back up. At least it was for me. You have to go into the winrar options and untick create a program group or everytime you open it winrar will recreate the program menu.

This of course doens't help with the initial deleting of the shortcut but can help with some confusion later on.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...