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.

Error in batch file. $OEM$ sub-folder with space

Featured Replies

Hi,

Is it normal that All my applications in my Install.cmd Batch file are installed except "$OEM$\$1\Install\MSN Messenger" and "$OEM$\$1\Install\Crap Cleaner". The data itself are copied to my hardrive but when the batch file run it give me an error: "Cannot find C:\Install\Crap" I suspect the space in the folder structure. What do u think about it ?

CLS
@echo off
TITLE Installation des applications

ECHO.
ECHO 1 sur 7
ECHO Installation de Crap Cleaner
start /wait %systemdrive%\Install\Crap Cleaner\ccsetup116.exe /S

ECHO.
ECHO 2 sur 7
ECHO Installation de MSN Messenger
start /wait %systemdrive%\Install\MSN Messenger\MsnMsgs.msi /QB

ECHO.
ECHO 3 sur 7
ECHO Installation de  Adobe Reader 6
start /wait %systemdrive%\Install\Adobe\AdbeRdr60_enu.exe -p"-s /v\"/qn\""


Yes

you found the error yourself ;)

The best is not to use spaces in your directory names.

Either no gap or an underline as in the example below.

ECHO.
ECHO 1 sur 7
ECHO Installation de Crap Cleaner
start /wait %systemdrive%\Install\CrapCleaner\ccsetup116.exe /S

ECHO.
ECHO 2 sur 7
ECHO Installation de MSN Messenger
start /wait %systemdrive%\Install\MSN_Messenger\MsnMsgs.msi /QB

or you can also use quotes

ECHO.
ECHO 1 sur 7
ECHO Installation de Crap Cleaner
start /wait "%systemdrive%\Install\Crap Cleaner\ccsetup116.exe" /S

but this would get harder to sort if you have lots of quotes in your command line

as below. I dont know if just adding quotes to the beginning and end would work.

ECHO.
ECHO 3 sur 7
ECHO Installation de  Adobe Reader 6
start /wait "%systemdrive%\Install\Adobe Reader\AdbeRdr60_enu.exe" -p"-s /v\"/qn\""

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.