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.

how can i play Mp3 During Batch File

Featured Replies


let me get this right...

you want your own custom install program to start another process (media player) but not wait on it and then kill that process when the install is done, right?

start mypath\myapp /myargs

use this to start the process without having to kill it to continue the batch

taskkill /f myapp.exe

use this to stop the app when the batch is finished

he wants audio to play in the background while his unattended CD installs stuff. and trying the /start \pathtoplayer\player.exe /myargs doesn't work as it waits for the media player to close. even calling it from a seperate batch file i couldn't find a way to allow the player to play the Mp3 and still install in the background.

freaky...

i wonder why that doesnt work when it does work inside windows...

a vbs should be able to do it...

Option Explicit
Dim oShell
Set oShell = CreateObject("WScript.Shell")
oShell.Run "myapp /myargs", 0, False

0 is for hidden, 2 is for minimized but not hidden

False tells it not to wait for the process to finish before continuing the script

then again... i dont know if a vbs will run... probably not...

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.