Jump to content

How to make beeps several times after ua install ?


Recommended Posts

Hi, im beginner and english is not my 1st language sorry. But i manage done my UAXP sp2 cd by following this great site + alanoll's msfn guide the best guide for me. Anyway i want to know how to make the pc beeps 10 times after the whole process (windows, my applications & bashrat's driverpacks) is done or when the pc restart ('cause i make mine restart in cleanup.cmd called by runoceex from cd). How & what command best i put in batch ? Thanks before for any tips & samples from you guys. :yes:

my cmdlines.txt =

[COMMANDS]

"ROE.exe 937"

"REGEDIT /S setstartup.reg"

"useraccounts.cmd"

"rundll32 advpack.dll,LaunchINFSection nLite.inf,nLiteReg"

"RunOnceEx.cmd"

my last line of cleanup.cmd =

shutdown.exe -r -f -t 60 -c "windows is restarting..."

Edited by e21k
Link to comment
Share on other sites


echo "^G" from cmd is the answer i looking for thaks vid0. the question now what is the batch script to make 10 beeps ? i just want to know after my ua xp and applications install is complete i get an audible/ sound message from the pc :whistle: . i have put all the graphics drivers from driverpacks net and ua xp + my applications into one cd and don't want to change to dvd disc to fit all the big sound drivers files, because i work with many diffrent cpu on daily basis that most got cdrom only. Any way i think also its a good idea to know my ua setup is complete without keep watching several monitors several times :no: .

thank you all guys :hello:

Edited by e21k
Link to comment
Share on other sites

Using your chosen method, I would suggest this

beep.cmd

@ECHO OFF &FOR /L %%? IN (1,1,10) DO (ECHO/ &&PING -n1 -w5000 LOCALHOST>NUL)

single line only.

<Edit>

For those without a system speaker, (like me), I would suggest this

@ECHO OFF
FOR /L %%? IN (1,1,10) DO (
START "" /MIN /WAIT SNDREC32 -PLAY -CLOSE %SYSTEMROOT%\MEDIA\DING.WAV)

</Edit>

Edited by Yzöwl
Link to comment
Share on other sites

Using your chosen method, I would suggest this

beep.cmd

@ECHO OFF &FOR /L %%? IN (1,1,10) DO (ECHO/ &&PING -n1 -w5000 LOCALHOST>NUL)

single line only.

Yes it's work, thank you very much Yzöwl for your simple & efectif solution just what i need. i agree with mazin too, if it just one beep scared me too but several beeps is diffrent story. it's solved now :thumbup

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...