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.

help me installation at T12 stage

Featured Replies

hello friends its me again after a while :hello:

i want to integrate the netframework, vb runtime, directx9c and flashplayer into my ua CD at T13 stage by means of cmdlines.txt in order to apply it for all users as windows components. and i wanted to do it by the command as follows:

[commands]

".\cmds\wincomp.cmd"

and my wincomp.cmd file is as follows:

@echo on&title windows components are being installed&color 0b

start /wait "%CDROM%\wincomp\netframework\netfx.msi "/qn REBOOT=Suppress"

start /wait "%CDROM%\wincomp\vb runtime\vbrun60sp6.exe /Q:A /R:N"

start /wait "%CDROM%\wincomp\directx9c\dxsetup.exe /silent"

start /wait "%CDROM%\wincomp\flashplayer\Shockwave_Installer_Full.exe /s"

but in order to test it in windows environment i wrote the cmd file instead,

@echo on&title windows components are being installed&color 0b

start /wait "D:\xpcd\wincomp\netframework\netfx.msi /qn REBOOT=Suppress"

start /wait "D:\xpcd\wincomp\vb runtime\vbrun60sp6.exe /Q:A /R:N"

start /wait "D:\xpcd\wincomp\directx9c\dxsetup.exe /silent"

start /wait "D:\xpcd\wincomp\flashplayer\Shockwave_Installer_Full.exe /s"

but when i click it on the desktop unfortunately it didnt work .

since i was sure about the commands are right, i wanted to test the every command in individual cmd file and put it in the relevant folder and it seemed to me it works. here are the codes for my test cmd files in relevant folder.

start /wait dxsetup.exe /silent

start /wait Shockwave_Installer_Full.exe /s

start /wait netfx.msi /qn REBOOT=Suppress"

start /wait vbrun60sp6.exe /Q:A /R:N

pls can you tell me where the fault is or show me the way how to do so....

thanks in advance :)

Your test that works shows no quotes. Type Start /? in the command console to get the correct syntax to be used. You will find that the 1st set of quotes after the Start command refer to the window title parameter.

Yep for instance...

You have

start /wait "%CDROM%\wincomp\netframework\netfx.msi "/qn REBOOT=Suppress"
start /wait "%CDROM%\wincomp\vb runtime\vbrun60sp6.exe /Q:A /R:N"
start /wait "%CDROM%\wincomp\directx9c\dxsetup.exe /silent"
start /wait "%CDROM%\wincomp\flashplayer\Shockwave_Installer_Full.exe /s"

Should be...

start /wait "%CDROM%\wincomp\netframework\netfx.msi" /qn REBOOT=Suppress
start /wait "%CDROM%\wincomp\vb runtime\vbrun60sp6.exe" /Q:A /R:N
start /wait "%CDROM%\wincomp\directx9c\dxsetup.exe" /silent
start /wait "%CDROM%\wincomp\flashplayer\Shockwave_Installer_Full.exe" /s

The way you were doing it you were basically saying there were no switches.

Everything between the quotes represents a path. The reson for the quotes is so that you can use a path which has spaces. The quote tell it that the spaces are part of the path. If you enclose your switches within those quotes it looks at them as if they were part of the path. ;)

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.