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.

is it possible tho play music while windows is installing

Featured Replies

can i play music like from batch or sumting while windows is installing i think in T-13 stage audio drivers are installed is there e way i can play music then with player screen hidden i wanna now because i want tho draw attention tho the pc that there have tho be info inputted or can make the pc make that tuut sound like wen u get error that use the littel speaker on the mobo

wanna have info on the 2 thanks

can i play music like from batch or sumting while windows is installing i think in T-13 stage audio drivers are installed is there e way i can play music then with player screen hidden i wanna now because i want tho draw attention tho the pc that there have tho be info inputted or can make the pc make that tuut sound like wen u get error that use the littel speaker on the mobo

wanna have info on the 2 thanks

Yes you can play music or sound during the install at the t13.

In the cmdlines.txt add a cmd for playing the sound

Example cmdlines.txt

[COMMANDS]

MyMusic.cmd

MyMusic.cmd

@Echo Off
CLS
MODE 55,5
COLOR F9
start "Some_Drive_Letter\Some_Folder\Music.File"

  • Author

@Echo Off

CLS

MODE 55,5

COLOR F9

start "C:\WINDOWS\system32\oobe\images\title.wma"

dont work

en how can i use ascii beep

in your batch file, type

echo

then hold down Ctrl and g

Perhaps you should check to see if the file exists first

[code]@Echo Off
CLS
MODE 55,5
COLOR F9
Set Music=%SystemDrive%\Windows\system32\oobe\images\title.wma

If Exist %Music% Goto Play
If Not Exist %Music% Goto Missing
:Play
start %Music%
Goto EOF
Exit

:Missing
CLS
Echo.
Echo Can Not Find This File
Echo %Music%
Echo.
set /p = Press Enter To Close This Window.
Goto EOF
Exit[/code]

  • Author

the exists en when i run the batch then mediaplayer starts up i think this because on laptop mayby sum safty settings were messing up before but isnt there e way tho play the music without the play showing up if u running windows xp the file mujst exist try

the exists en when i run the batch then mediaplayer starts up i think this because on laptop mayby sum safty settings were messing up before but isnt there e way tho play the music without the play showing up if u running windows xp the file mujst exist try

Then try this it is a VBS script

Save as PlayMusic.vbs

[code]Dim Music :Music="Place The Path And Name Of The File Here"
Dim Act :Set Act = CreateObject("Wscript.Shell")
Dim Fso :Set Fso = CreateObject("Scripting.FileSystemObject")
If Fso.FileExists(Music) Then
Act.Run("wmplayer.exe /play /close " & Music),0,True
End If[/code]

I do not know if this script will work, I am on Vista and mplay32.exe is in my music folder.

This script plays all my music files in the folder and the player is not visable.

[code]Dim Act :Set Act = CreateObject("Wscript.Shell")
Dim Fso :Set Fso = CreateObject("Scripting.FileSystemObject")
Dim F1, F2
Set F1 = Fso.GetFolder(".")
For Each F2 In F1.Files
If Right(InStr(F2.Name,".mp3"),4) Then
Act.Run("mplay32.exe /play /close " & F2.Path),0,true
End If
Next[/code]

Edited by gunsmokingman

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.