Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Vista General Discussion > Replacement for XP messenger?

Reply
Thread Tools Display Modes

Replacement for XP messenger?

 
 
simonc
Guest
Posts: n/a

 
      01-28-2009
On an XP machine I had a scheduled task which used "net start messenger" to
put up a message box telling any user using the machine to close files
because a backup was about to start.


I am now setting up a machine with Vista and the above command doesn't work.
What is the simplest way to do the same job?

Grateful for advice.
 
Reply With Quote
 
 
 
 
Zaphod Beeblebrox
Guest
Posts: n/a

 
      01-28-2009

"simonc" <> wrote in message
news:BAB3A1CB-E6E6-4C1F-A7A3-...
> On an XP machine I had a scheduled task which used "net start
> messenger" to
> put up a message box telling any user using the machine to close files
> because a backup was about to start.
>
>
> I am now setting up a machine with Vista and the above command doesn't
> work.
> What is the simplest way to do the same job?
>
> Grateful for advice.


Easiest way is probably to schedule a small batch file, like this:

@Echo off
echo Save your files and close your apps.
echo Scheduled backup is about to start.
pause

Not very pretty, but gets the job done.

--
Zaphod

No matter where you go, there you are!


 
Reply With Quote
 
simonc
Guest
Posts: n/a

 
      01-28-2009
Thank you Zaphod (!)

This is much neater than messing with various supposed netsend utilities I
found browsing the internet.


 
Reply With Quote
 
Zaphod Beeblebrox
Guest
Posts: n/a

 
      01-28-2009

"simonc" <> wrote in message
news:C9C401D2-7C42-475E-89CD-...
> Thank you Zaphod (!)
>
> This is much neater than messing with various supposed netsend
> utilities I
> found browsing the internet.
>


You are welcome, glad I could help.

Just because, I looked at a way to make it nicer and came up with this:

Save a file called BackupWarning.vbs somewhere, say C:\Users\Public,
with the following line in it:

MsgBox "Save your work and close your apps." & Chr(13) & Chr(10) &
"Scheduled backup is about to start.", 48, "Warning!"

(The above should be one single line. The & Chr(13) & Chr(10) & splits
the message up into two lines, the ', 48' makes it show the yellow
triangle and exclamation point, and the ', "Warning!"' gives it the
title . Google vbscript msgbox syntax for more options, including how
to change the icon displayed.)

Then, schedule a task with the following command:

cscript /nologo c:\users\public\BackupWarning.vbs

A bit nicer than the command prompt popping up, but I've not tested the
scheduling part under Vista so I don't know for sure it will work.
Works fine under XP though.

--
Zaphod

No matter where you go, there you are!


 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

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
replacement for gpedit Daniel Royer Windows Vista General Discussion 4 01-21-2009 03:46 PM
Windows Live Messenger vs Yahoo messenger JethroUK Windows Vista General Discussion 1 03-16-2008 07:12 PM
Re: Demonoid replacement Rev. Newt Zest Windows Vista General Discussion 1 02-14-2008 09:35 AM
OEM Replacement Vigilante Windows Vista Installation 2 12-23-2007 02:20 PM
Yahoo messenger and Windows Live Messenger wont connect on Vista Murat Windows Vista Installation 0 03-02-2007 03:06 AM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59