PC Review


Reply
 
 
peejaa
Guest
Posts: n/a
 
      8th Mar 2009
Friend has an aged pc - takes forever to boot up, load XP windows, link to
internet etc and ready to go...he has no problem with that...he's gonna
upgrade one day...
....however, he also has an aged mother who often turns on the pc in the
mornings and starts clicking around before everything has loaded....he's
tried in vain to get her to cease this practice to no avail..

anyone know a way of displaying something on screen..an icon or whatever or
better still a text display when all the booting up windows loading programs
etc has been completed....saying something like:- OK, YOU CAN USE THE PC NOW
MUM.



 
Reply With Quote
 
 
 
 
R. McCarty
Guest
Posts: n/a
 
      8th Mar 2009
Even a older PC can be made to boot in a reasonable time. Just running
a defrag on the system volume will help. Also reviewing the startup entries
and maybe removing non-essential ones would speed things along.
If that's not a possibility, you might create a file that displays a
message
like you describe and place a shortcut to it in the "Startup" folder.
Usually
items here are loaded at the end of the bootup cycle.

"peejaa" <(E-Mail Removed)> wrote in message
news:exsEfc%(E-Mail Removed)...
> Friend has an aged pc - takes forever to boot up, load XP windows, link to
> internet etc and ready to go...he has no problem with that...he's gonna
> upgrade one day...
> ...however, he also has an aged mother who often turns on the pc in the
> mornings and starts clicking around before everything has loaded....he's
> tried in vain to get her to cease this practice to no avail..
>
> anyone know a way of displaying something on screen..an icon or whatever
> or
> better still a text display when all the booting up windows loading
> programs
> etc has been completed....saying something like:- OK, YOU CAN USE THE PC
> NOW
> MUM.
>
>
>



 
Reply With Quote
 
Pegasus
Guest
Posts: n/a
 
      8th Mar 2009

"peejaa" <(E-Mail Removed)> wrote in message
news:exsEfc%(E-Mail Removed)...
> Friend has an aged pc - takes forever to boot up, load XP windows, link to
> internet etc and ready to go...he has no problem with that...he's gonna
> upgrade one day...
> ...however, he also has an aged mother who often turns on the pc in the
> mornings and starts clicking around before everything has loaded....he's
> tried in vain to get her to cease this practice to no avail..
>
> anyone know a way of displaying something on screen..an icon or whatever
> or
> better still a text display when all the booting up windows loading
> programs
> etc has been completed....saying something like:- OK, YOU CAN USE THE PC
> NOW
> MUM.


You could save the following two lines into the file "logon.vbs" which you
must place into the Startup folder of the "All Users" profile:

wscript.sleep 30000
msgbox "OK, you can use the PC now, Mum", 6, "Message from your PC"

Select a "sleep" time that is appropriate, e.g. 60,000 (=1 minute).


 
Reply With Quote
 
Pegasus
Guest
Posts: n/a
 
      8th Mar 2009

"peejaa" <(E-Mail Removed)> wrote in message
news:exsEfc%(E-Mail Removed)...
> Friend has an aged pc - takes forever to boot up, load XP windows, link to
> internet etc and ready to go...he has no problem with that...he's gonna
> upgrade one day...
> ...however, he also has an aged mother who often turns on the pc in the
> mornings and starts clicking around before everything has loaded....he's
> tried in vain to get her to cease this practice to no avail..
>
> anyone know a way of displaying something on screen..an icon or whatever
> or
> better still a text display when all the booting up windows loading
> programs
> etc has been completed....saying something like:- OK, YOU CAN USE THE PC
> NOW
> MUM.
>


Here is something a bit more up-market. It pops up a message telling your
mother to wait, then tells her to go ahead when the time is up. Remove the
line numbers before saving the code.

01. iDelay = 60 'seconds
02. Set oWshShell = CreateObject("WScript.Shell")
03. iTime = Timer
04. Do
05. oWshShell.Popup "Please wait while the PC settles down!", _
06. iDelay, "Message from your PC", 0
07. if Timer - iTime >= iDelay then Exit Do
08. Loop
09. MsgBox "OK, you can use the PC now, Mum", 6, "Message from your PC"


 
Reply With Quote
 
DL
Guest
Posts: n/a
 
      8th Mar 2009
I like it


"Pegasus" <(E-Mail Removed)> wrote in message
news:OEEkmX$(E-Mail Removed)...
>
> "peejaa" <(E-Mail Removed)> wrote in message
> news:exsEfc%(E-Mail Removed)...
>> Friend has an aged pc - takes forever to boot up, load XP windows, link
>> to
>> internet etc and ready to go...he has no problem with that...he's gonna
>> upgrade one day...
>> ...however, he also has an aged mother who often turns on the pc in the
>> mornings and starts clicking around before everything has loaded....he's
>> tried in vain to get her to cease this practice to no avail..
>>
>> anyone know a way of displaying something on screen..an icon or whatever
>> or
>> better still a text display when all the booting up windows loading
>> programs
>> etc has been completed....saying something like:- OK, YOU CAN USE THE PC
>> NOW
>> MUM.
>>

>
> Here is something a bit more up-market. It pops up a message telling your
> mother to wait, then tells her to go ahead when the time is up. Remove the
> line numbers before saving the code.
>
> 01. iDelay = 60 'seconds
> 02. Set oWshShell = CreateObject("WScript.Shell")
> 03. iTime = Timer
> 04. Do
> 05. oWshShell.Popup "Please wait while the PC settles down!", _
> 06. iDelay, "Message from your PC", 0
> 07. if Timer - iTime >= iDelay then Exit Do
> 08. Loop
> 09. MsgBox "OK, you can use the PC now, Mum", 6, "Message from your PC"
>
>



 
Reply With Quote
 
Pegasus
Guest
Posts: n/a
 
      8th Mar 2009

"DL" <address@invalid> wrote in message
news:Oduism$(E-Mail Removed)...
>I like it
>


I hope the OP's mum likes it too . . .


 
Reply With Quote
 
peejaa
Guest
Posts: n/a
 
      8th Mar 2009

"Pegasus" <(E-Mail Removed)> wrote in message
news:OEEkmX$(E-Mail Removed)...
>
> "peejaa" <(E-Mail Removed)> wrote in message
> news:exsEfc%(E-Mail Removed)...
>> Friend has an aged pc - takes forever to boot up, load XP windows, link
>> to
>> internet etc and ready to go...he has no problem with that...he's gonna
>> upgrade one day...
>> ...however, he also has an aged mother who often turns on the pc in the
>> mornings and starts clicking around before everything has loaded....he's
>> tried in vain to get her to cease this practice to no avail..
>>
>> anyone know a way of displaying something on screen..an icon or whatever
>> or
>> better still a text display when all the booting up windows loading
>> programs
>> etc has been completed....saying something like:- OK, YOU CAN USE THE PC
>> NOW
>> MUM.
>>

>
> Here is something a bit more up-market. It pops up a message telling your
> mother to wait, then tells her to go ahead when the time is up. Remove the
> line numbers before saving the code.
>
> 01. iDelay = 60 'seconds
> 02. Set oWshShell = CreateObject("WScript.Shell")
> 03. iTime = Timer
> 04. Do
> 05. oWshShell.Popup "Please wait while the PC settles down!", _
> 06. iDelay, "Message from your PC", 0
> 07. if Timer - iTime >= iDelay then Exit Do
> 08. Loop
> 09. MsgBox "OK, you can use the PC now, Mum", 6, "Message from your PC"

=========
Thanks for that ...tried it out before sending to buddy...unsure if I,m
doing it correctly but all that happens is after Windows etc has loaded,
Word opens in which is the full 9 line code shown in text?


 
Reply With Quote
 
Pegasus
Guest
Posts: n/a
 
      8th Mar 2009

"peejaa" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
>
> "Pegasus" <(E-Mail Removed)> wrote in message
> news:OEEkmX$(E-Mail Removed)...
>>
>> "peejaa" <(E-Mail Removed)> wrote in message
>> news:exsEfc%(E-Mail Removed)...
>>> Friend has an aged pc - takes forever to boot up, load XP windows, link
>>> to
>>> internet etc and ready to go...he has no problem with that...he's gonna
>>> upgrade one day...
>>> ...however, he also has an aged mother who often turns on the pc in the
>>> mornings and starts clicking around before everything has loaded....he's
>>> tried in vain to get her to cease this practice to no avail..
>>>
>>> anyone know a way of displaying something on screen..an icon or whatever
>>> or
>>> better still a text display when all the booting up windows loading
>>> programs
>>> etc has been completed....saying something like:- OK, YOU CAN USE THE PC
>>> NOW
>>> MUM.
>>>

>>
>> Here is something a bit more up-market. It pops up a message telling your
>> mother to wait, then tells her to go ahead when the time is up. Remove
>> the line numbers before saving the code.
>>
>> 01. iDelay = 60 'seconds
>> 02. Set oWshShell = CreateObject("WScript.Shell")
>> 03. iTime = Timer
>> 04. Do
>> 05. oWshShell.Popup "Please wait while the PC settles down!", _
>> 06. iDelay, "Message from your PC", 0
>> 07. if Timer - iTime >= iDelay then Exit Do
>> 08. Loop
>> 09. MsgBox "OK, you can use the PC now, Mum", 6, "Message from your PC"

> =========
> Thanks for that ...tried it out before sending to buddy...unsure if I,m
> doing it correctly but all that happens is after Windows etc has loaded,
> Word opens in which is the full 9 line code shown in text?


Sorry, can't tell. You need to tell us ***where*** you saved the file and
under what ***name***. I suspect you made it a .txt file. This won't work.
It must be a .vbs file.


 
Reply With Quote
 
peejaa
Guest
Posts: n/a
 
      8th Mar 2009

"Pegasus" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
>
> "peejaa" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>>
>> "Pegasus" <(E-Mail Removed)> wrote in message
>> news:OEEkmX$(E-Mail Removed)...
>>>
>>> "peejaa" <(E-Mail Removed)> wrote in message
>>> news:exsEfc%(E-Mail Removed)...
>>>> Friend has an aged pc - takes forever to boot up, load XP windows, link
>>>> to
>>>> internet etc and ready to go...he has no problem with that...he's gonna
>>>> upgrade one day...
>>>> ...however, he also has an aged mother who often turns on the pc in the
>>>> mornings and starts clicking around before everything has
>>>> loaded....he's
>>>> tried in vain to get her to cease this practice to no avail..
>>>>
>>>> anyone know a way of displaying something on screen..an icon or
>>>> whatever or
>>>> better still a text display when all the booting up windows loading
>>>> programs
>>>> etc has been completed....saying something like:- OK, YOU CAN USE THE
>>>> PC NOW
>>>> MUM.
>>>>
>>>
>>> Here is something a bit more up-market. It pops up a message telling
>>> your mother to wait, then tells her to go ahead when the time is up.
>>> Remove the line numbers before saving the code.
>>>
>>> 01. iDelay = 60 'seconds
>>> 02. Set oWshShell = CreateObject("WScript.Shell")
>>> 03. iTime = Timer
>>> 04. Do
>>> 05. oWshShell.Popup "Please wait while the PC settles down!", _
>>> 06. iDelay, "Message from your PC", 0
>>> 07. if Timer - iTime >= iDelay then Exit Do
>>> 08. Loop
>>> 09. MsgBox "OK, you can use the PC now, Mum", 6, "Message from your PC"

>> =========
>> Thanks for that ...tried it out before sending to buddy...unsure if I,m
>> doing it correctly but all that happens is after Windows etc has loaded,
>> Word opens in which is the full 9 line code shown in text?

>
> Sorry, can't tell. You need to tell us ***where*** you saved the file and
> under what ***name***. I suspect you made it a .txt file. This won't work.
> It must be a .vbs file.

======================
Ah, that's ok..yes I had it as a txt file..changed to vbs and works ok...TVM
will pass this onto friend. Thanks.


 
Reply With Quote
 
Kelly
Guest
Posts: n/a
 
      8th Mar 2009
Another option, is not turn off the system and/or uncheck all options not
needed to load for a normal boot as well under Start/Run/Msconfig/Startup.

--

All the Best,
Kelly (MS-MVP/DTS&XP)

Taskbar Repair Tool Plus!
http://www.kellys-korner-xp.com/taskbarplus!.htm


"peejaa" <(E-Mail Removed)> wrote in message
news:exsEfc%(E-Mail Removed)...
> Friend has an aged pc - takes forever to boot up, load XP windows, link to
> internet etc and ready to go...he has no problem with that...he's gonna
> upgrade one day...
> ...however, he also has an aged mother who often turns on the pc in the
> mornings and starts clicking around before everything has loaded....he's
> tried in vain to get her to cease this practice to no avail..
>
> anyone know a way of displaying something on screen..an icon or whatever
> or
> better still a text display when all the booting up windows loading
> programs
> etc has been completed....saying something like:- OK, YOU CAN USE THE PC
> NOW
> MUM.
>
>
>


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Re: Asus laptop:Reboot & select proper boot device or insert boot media in selected boot device? dadiOH Windows XP Help 0 24th May 2010 12:29 PM
Stuck in XP Pro Boot Checkdsk-Boot-Chkdsk-Boot loop MarkB_GrndP Windows XP Help 3 23rd Nov 2009 01:11 PM
Windowsxp boot image faded on boot, gets stuck, have to push reset to boot again Michael Reed Windows XP Hardware 1 7th Apr 2006 03:16 PM
oh boy .... 'Reboot & select proper boot device or insert boot mediain selected boot device & press a key' ndy Storage Devices 2 25th Feb 2006 06:22 PM
Dual Boot Config with new CPU won't boot with XP SP2 but will boot wth Win98 SE Jack Bauer Windows XP Help 2 20th Nov 2005 02:03 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 11:24 AM.