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.

Problem deleting shorcuts in .CMD and BATCH files

Featured Replies

Hello people, i have two problems :/

I like delete this shorcuts when my system started for first time:

in my delete.cmd have this

ECHO.
ECHO Eliminando accesos directos...
DEL "%systemdrive%\Documents and Settings\All Users\Menu Inicio\Asistencia remota.lnk"
DEL "%systemdrive%\Documents and Settings\Administrador\Menu Inicio\Asistencia remota.lnk"
DEL "%systemdrive%\Documents and Settings\All Users\Menu Inicio\POWERPOINT presentacion.lnk"
DEL "%systemdrive%\Documents and Settings\Administrador\Menu Inicio\POWERPOINT presentacion.lnk"
DEL "%systemdrive%\Documents and Settings\All Users\Menu Inicio\ACCESS base de datos.lnk"
DEL "%systemdrive%\Documents and Settings\Administrador\Menu Inicio\ACCESS base de datos.lnk"

but don't work.. not remove anything :angry:

try with .BAT file but don't work

i have Windows XP SP2 in spanish

Help!

make sure you have the path rignt. type

dir "%systemdrive%\Documents and Settings\All Users\Menu Inicio\Asistencia remota.lnk"

if you get "The system cannot find the file specified." then the path is wrong.

use the /F /Q option with delete to delete read only files.

del /F /Q "C:\Documents and Settings\All Users\Start Menu\Programs\TextPad.lnk"

ALLUSERSPROFILE=C:\Documents and Settings\All Users so you could write

del /F /Q "%ALLUSERSPROFILE%\Start Menu\Programs\TextPad.lnk"

I like to check that a link exists before deleting it.

if exist "%ALLUSERSPROFILE%\Start Menu\Programs\TextPad.lnk" del /F /Q "%ALLUSERSPROFILE%\Start Menu\Programs\TextPad.lnk"

you might want to delete these from the default profile during the RunOnceEx stage of setup to. Otherwise any new profile that is created will inherit its start menu items from there.

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.