Windows start-up tunes

C

cameo

Until Win8 all versions had a unique start-up tune. Is my setup missing
it or Microsoft decided to drop the tradition?
 
A

Andy

cameo said:
Until Win8 all versions had a unique start-up tune. Is my setup missing it
or Microsoft decided to drop the tradition?
Hi,

Go to START > Control Panel > Sounds. In the panel click on the 'Sounds' tab
and on that page near the bottom is a checkbox for 'Play Windows Startup
sound'.

The only problem is that you cannot choose what sound file it plays.

Here's a solution that allows you to play a specific file at startup...

1: Copy & Past the following code into notepad...

'================StartSound.vbs==============
Set wmp = CreateObject("WMPlayer.OCX")
wmp.settings.autoStart = True

'set volume 0 to 100
wmp.settings.volume = 100

'Enter pathname of desired startup sound.
wmp.URL = "c:\windows\media\FemaleUK\logging on to system.wav"

'wait til it stops
while wmp.Playstate <> 1
WSH.Sleep 100
wend
'

2: Edit the name/location of the file you want to play.

3: Save the file as 'startsound.vbs' to your 'Startup' folder
(c://users/YOU/AppData/Roaming/Microsoft/Windows/Start Menu/Programs/Startup
or START > All Programs > Startup).


Hope this helps


Andy
 
D

Dave \Crash\ Dummy

Andy said:
Here's a solution that allows you to play a specific file at startup...

1: Copy & Past the following code into notepad...

'================StartSound.vbs==============
Set wmp = CreateObject("WMPlayer.OCX")
wmp.settings.autoStart = True

'set volume 0 to 100
wmp.settings.volume = 100

'Enter pathname of desired startup sound.
wmp.URL = "c:\windows\media\FemaleUK\logging on to system.wav"

'wait til it stops
while wmp.Playstate <> 1
WSH.Sleep 100
wend
'

2: Edit the name/location of the file you want to play.

3: Save the file as 'startsound.vbs' to your 'Startup' folder
(c://users/YOU/AppData/Roaming/Microsoft/Windows/Start
Menu/Programs/Startup or START > All Programs > Startup).
That's the script I use, and it is probably the best way, but just to
show there's more than one way to peel a pussy, this will also work:

'==================== NewStart.vbs =========================
Set IE = CreateObject("InternetExplorer.Application")
IE.Navigate "about:blank"
IE.document.body.innerHTML="<bgsound src=""d:\media\myStartup.wav"">"
wsh.sleep 5000 '''''''''''''Allow time for sound file to play
IE.quit
'=======================================================
 
C

cameo

Hi,

Go to START > Control Panel > Sounds. In the panel click on the 'Sounds'
tab and on that page near the bottom is a checkbox for 'Play Windows
Startup sound'.

The only problem is that you cannot choose what sound file it plays.

Here's a solution that allows you to play a specific file at startup...

1: Copy & Past the following code into notepad...

'================StartSound.vbs==============
Set wmp = CreateObject("WMPlayer.OCX")
wmp.settings.autoStart = True

'set volume 0 to 100
wmp.settings.volume = 100

'Enter pathname of desired startup sound.
wmp.URL = "c:\windows\media\FemaleUK\logging on to system.wav"

'wait til it stops
while wmp.Playstate <> 1
WSH.Sleep 100
wend
'

2: Edit the name/location of the file you want to play.

3: Save the file as 'startsound.vbs' to your 'Startup' folder
(c://users/YOU/AppData/Roaming/Microsoft/Windows/Start
Menu/Programs/Startup or START > All Programs > Startup).


Hope this helps


Andy
Thanks, Andy. I've been to that Sound menu, but missed that checkmark
box on the bottom because it kind'a stands there by itself. Prior
version of Windows seemed to come with that box marked by default, so I
never had to bother with it.

BTW, that default tune sounds familiar. I wonder why they didn't come up
with a unique one for this version, too. I also seem to recall a
separate default Windows shut-down tunes in some prior versions, but I
don't see any option for it this time. Am I remembering wrong?
 
G

Gene E. Bloch

Until Win8 all versions had a unique start-up tune. Is my setup missing
it or Microsoft decided to drop the tradition?
Suggestion: crosspost rather than multipost.

It makes for a more coherent experience.
 
C

cameo

Suggestion: crosspost rather than multipost.

It makes for a more coherent experience.
I didn't intend to post in this NG originally, but when I got no answer
there, I posted here. TNot much traffic there yet, I guess.
Now you know why I didn't cross-post.
 
G

Gene E. Bloch

I didn't intend to post in this NG originally, but when I got no answer
there, I posted here. TNot much traffic there yet, I guess.
Now you know why I didn't cross-post.
OK, you win this one...

Since you post frequently here & there, I should have realized there was
some ad hoc reason for it :)

Nonetheless, I kind of liked my remark about "a more coherent
experience"; I never thought of saying it that way before.

And I'll close with an apology for my net-cop behavior.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top