Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Shortcuts Deleting Impossible

Featured Replies

hi i tried everything but i couldn t delete the shortcuts

I think i know where the problem comes from but i don t know how to fix it

this is wha I write in my batch file

ECHO.

ECHO Removing useless shortcuts...

DEL "%systemdrive%\Documents and Settings\All Users\Menu Démarrer\Assistance à distance.lnk"

DEL "%systemdrive%\Documents and Settings\All Users\Menu Démarrer\Windows Update.lnk"

DEL "%systemdrive%\Documents and Settings\All Users\Menu Démarrer\Catalogue Windows.lnk"

DEL "%systemdrive%\Documents and Settings\All Users\Menu Démarrer\Configurer les programmes par défaut.lnk"

the problem is that I use a french Windows XP "Start Menu" in french is "Menu Démarrer" but when i execute the batch file i got "Menu dÚmarrer"

so how can i Fix it Please

Thanx in Advance

post-70-1093799795_thumb.jpg


First, you can shorten your strings as follows:

From:

DEL "%systemdrive%\Documents and Settings\All Users\Menu Démarrer\Assistance à distance.lnk"

To:

DEL "%AllUsersProfile%\Menu Démarrer\Assistance à distance.lnk"

However, you can try this:

DEL "%AllUsersProfile%\Menu Démarrer\Assistance*.lnk"

I'm not sure if it should work for you.

EDIT 1: And since they're all in the same place where you want to clean the top area of Start Menu, you can use this instead:

DEL "%AllUsersProfile%\Menu Démarrer\*.lnk"

EDIT 2: Also, what about this:

SET StartMenu=%AllUsersProfile%\Menu Démarrer

DEL "%StartMenu%\*.lnk"

  • Author

I tried all the Method But the problem Is it couldn t Access "menu démarrer" Folder i think windows on command prompt can t read "é" it keeps saying c:......\\\\\menu dumarrer\... path is incorrect

it changes the "é" into u ??

so is there anything else i can do ??

Really sorry! I hope a French guy could come and help.

Good luck.

Hello,

Try that :

del /f /s /a C:\Docume~1\%username%\Menudm~1\Progra~1\assist*.lnk

del /f /s /a "%allusersprofile%\Menudm~1\Windows Update.lnk"

del /f /s /a "%allusersprofile%\Menudm~1\Config~1.lnk"

del /f /s /a "%allusersprofile%\Menudm~1\Catalogue Windows.lnk"

this is a common problem with batchfiles. they use a DOS approach, thus meaning that any wierd character like that é will be transformded to that stupid U. I had that same problem, and the solution will look a bit stupid, but it works. look at this thread

i had the same problem with my batch file not finding the links i wanted to delete eve tho it tested working from within windows :-\ (i use english windows :blushing: )

i had the same problem with my batch file not finding the links i wanted to delete eve tho it tested working from within windows :-\ (i use english windows  :blushing:  )

A reason behind your problem may be that those shortcuts weren't created yet before you executed the deletion.

If you put a sleep interval of about 10 seconds or less in your batch, it should work fine.

I Know, but this was a very different problem.the folder was there, but the batchfile changed 1 character

Open up a command-prompt and type edit. Change your cmdfile from within that application, and it should work... Thats how I got some of my swedish characters to be understood by the command files.

you can probably use a question mark for that character too. That's a wildcard for just a single character.

Menu D?marrer

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.