|
|
| Next: scanner installation |
| Author |
Message |
GoldHawk External

Since: Apr 02, 2006 Posts: 10
|
Posted: Fri Feb 13, 2009 10:36 am Post subject: Turn Off / Restart icon on desktop Archived from groups: microsoft>public>windowsxp>customize (more info?) |
|
|
|
| Is there any easy way to put a Turn Off and / or Restart button on the
desktop (without using Regedit) ?
With thanks.
|
|
|
| Back to top |
|
 |
Big_Al External

Since: Jan 08, 2009 Posts: 38
|
Posted: Fri Feb 13, 2009 1:51 pm Post subject: Re: Turn Off / Restart icon on desktop [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
GoldHawk said this on 2/13/2009 1:36 PM:
> Is there any easy way to put a Turn Off and / or Restart button on the
> desktop (without using Regedit) ?
>
> With thanks.
For restart:
Right click on the desktop, new -> shortcut.
Put this as the command
%windir%\System32\shutdown.exe -r -t 0
the -r = restart the -t = time delay = 0 seconds.
Same logic for a shutdown except us
%windir%\System32\shutdown.exe -s -t 0
the -s = shutdown same for -t |
|
| Back to top |
|
 |
Big_Al External

Since: Jan 08, 2009 Posts: 38
|
Posted: Fri Feb 13, 2009 2:00 pm Post subject: Re: Turn Off / Restart icon on desktop [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
Big_Al said this on 2/13/2009 1:51 PM:
> GoldHawk said this on 2/13/2009 1:36 PM:
>> Is there any easy way to put a Turn Off and / or Restart button on the
>> desktop (without using Regedit) ?
>>
>> With thanks.
>
> For restart:
> Right click on the desktop, new -> shortcut.
> Put this as the command
> %windir%\System32\shutdown.exe -r -t 0
>
> the -r = restart the -t = time delay = 0 seconds.
>
> Same logic for a shutdown except us
> %windir%\System32\shutdown.exe -s -t 0
>
> the -s = shutdown same for -t
You can also click the change icon button. There is a pretty good red
power button for the restart in %SystemRoot%\system32\SHELL32.dll. And
I use the large right pointing green arrow head in that same file for
the restart. |
|
| Back to top |
|
 |
GoldHawk External

Since: Apr 02, 2006 Posts: 10
|
Posted: Fri Feb 13, 2009 3:04 pm Post subject: Re: Turn Off / Restart icon on desktop [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
That's brilliant. Thank Big Al. Works a treat. I've used those icons, too.
It's the first time I've used that shortcut wizard. I've always created
desktop shortcuts by right clicking from the file or folder in Explorer. So,
leant something new.
Would it be too simple if using the same logic but replacing -s or -r with
-h would give a Hibernate shortcut ?
With thanks.
Mike
"Big_Al" wrote:
> Big_Al said this on 2/13/2009 1:51 PM:
> > GoldHawk said this on 2/13/2009 1:36 PM:
> >> Is there any easy way to put a Turn Off and / or Restart button on the
> >> desktop (without using Regedit) ?
> >>
> >> With thanks.
> >
> > For restart:
> > Right click on the desktop, new -> shortcut.
> > Put this as the command
> > %windir%\System32\shutdown.exe -r -t 0
> >
> > the -r = restart the -t = time delay = 0 seconds.
> >
> > Same logic for a shutdown except us
> > %windir%\System32\shutdown.exe -s -t 0
> >
> > the -s = shutdown same for -t
>
> You can also click the change icon button. There is a pretty good red
> power button for the restart in %SystemRoot%\system32\SHELL32.dll. And
> I use the large right pointing green arrow head in that same file for
> the restart.
> |
|
| Back to top |
|
 |
Big_Al External

Since: Jan 08, 2009 Posts: 38
|
Posted: Fri Feb 13, 2009 10:13 pm Post subject: Re: Turn Off / Restart icon on desktop [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
GoldHawk said this on 2/13/2009 6:04 PM:
> That's brilliant. Thank Big Al. Works a treat. I've used those icons, too.
>
> It's the first time I've used that shortcut wizard. I've always created
> desktop shortcuts by right clicking from the file or folder in Explorer. So,
> leant something new.
>
> Would it be too simple if using the same logic but replacing -s or -r with
> -h would give a Hibernate shortcut ?
>
> With thanks.
>
> Mike
>
> "Big_Al" wrote:
>
>> Big_Al said this on 2/13/2009 1:51 PM:
>>> GoldHawk said this on 2/13/2009 1:36 PM:
>>>> Is there any easy way to put a Turn Off and / or Restart button on the
>>>> desktop (without using Regedit) ?
>>>>
>>>> With thanks.
>>> For restart:
>>> Right click on the desktop, new -> shortcut.
>>> Put this as the command
>>> %windir%\System32\shutdown.exe -r -t 0
>>>
>>> the -r = restart the -t = time delay = 0 seconds.
>>>
>>> Same logic for a shutdown except us
>>> %windir%\System32\shutdown.exe -s -t 0
>>>
>>> the -s = shutdown same for -t
>> You can also click the change icon button. There is a pretty good red
>> power button for the restart in %SystemRoot%\system32\SHELL32.dll. And
>> I use the large right pointing green arrow head in that same file for
>> the restart.
>>
If your PC supports it, try it, what can happen but get an error message! |
|
| Back to top |
|
 |
ju.c External

Since: Jan 18, 2009 Posts: 14
|
Posted: Fri Feb 13, 2009 11:16 pm Post subject: Re: Turn Off / Restart icon on desktop [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
Create a desktop or quick launch shortcut to open the
"Turn off computer" dialog box:
1. Open Notepad and paste the following:
Set wshshell = CreateObject("Shell.Application")
wshshell.ShutdownWindows
2. Save-as Shutdown_Box.vbs (or any name + .vbs)
3. Move the file somewhere then create a new shortcut
to it on the desktop. To change the icon to the
shutdown icon browse here and look for the icon in
the window: C:\WINDOWS\system32\shell32.dll
4. If you want it on the Quick Launch area, just move
it there from the desktop.
ju.c
"GoldHawk" <GoldHawk.DeleteThis@discussions.microsoft.com> wrote in message news:4D14FD5C-FF05-483A-9767-17D6EA0D6911@microsoft.com...
> Is there any easy way to put a Turn Off and / or Restart button on the
> desktop (without using Regedit) ?
>
> With thanks. |
|
| Back to top |
|
 |
GoldHawk External

Since: Apr 02, 2006 Posts: 10
|
Posted: Sat Feb 14, 2009 5:38 am Post subject: Re: Turn Off / Restart icon on desktop [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
Unfortunately, this didn't work for Hibernate. No error message, just didn't
do anything. It's not a great issue, but would have been nice if it had.
"Big_Al" wrote:
> GoldHawk said this on 2/13/2009 6:04 PM:
> > That's brilliant. Thank Big Al. Works a treat. I've used those icons, too.
> >
> > It's the first time I've used that shortcut wizard. I've always created
> > desktop shortcuts by right clicking from the file or folder in Explorer. So,
> > leant something new.
> >
> > Would it be too simple if using the same logic but replacing -s or -r with
> > -h would give a Hibernate shortcut ?
> >
> > With thanks.
> >
> > Mike
> >
> > "Big_Al" wrote:
> >
> >> Big_Al said this on 2/13/2009 1:51 PM:
> >>> GoldHawk said this on 2/13/2009 1:36 PM:
> >>>> Is there any easy way to put a Turn Off and / or Restart button on the
> >>>> desktop (without using Regedit) ?
> >>>>
> >>>> With thanks.
> >>> For restart:
> >>> Right click on the desktop, new -> shortcut.
> >>> Put this as the command
> >>> %windir%\System32\shutdown.exe -r -t 0
> >>>
> >>> the -r = restart the -t = time delay = 0 seconds.
> >>>
> >>> Same logic for a shutdown except us
> >>> %windir%\System32\shutdown.exe -s -t 0
> >>>
> >>> the -s = shutdown same for -t
> >> You can also click the change icon button. There is a pretty good red
> >> power button for the restart in %SystemRoot%\system32\SHELL32.dll. And
> >> I use the large right pointing green arrow head in that same file for
> >> the restart.
> >>
>
> If your PC supports it, try it, what can happen but get an error message!
> |
|
| Back to top |
|
 |
GoldHawk External

Since: Apr 02, 2006 Posts: 10
|
Posted: Sat Feb 14, 2009 5:44 am Post subject: Re: Turn Off / Restart icon on desktop [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
The solution for Shutdown and Re-start suggested by Big Al worked fine but
just for my own education I thought I would try your suggestion.
After putting shortcut on the desktop, I had this error message:
Script: C:\WINDOWS\Shutdown by Mike.vbs
Line: 1
Char: 49
Error: Expected end of statement
Code: 800A0401
Source: Microsoft VBScript compilation error
Any further thoughts please ?
"ju.c" wrote:
> Create a desktop or quick launch shortcut to open the
> "Turn off computer" dialog box:
>
> 1. Open Notepad and paste the following:
>
> Set wshshell = CreateObject("Shell.Application")
> wshshell.ShutdownWindows
>
> 2. Save-as Shutdown_Box.vbs (or any name + .vbs)
>
> 3. Move the file somewhere then create a new shortcut
> to it on the desktop. To change the icon to the
> shutdown icon browse here and look for the icon in
> the window: C:\WINDOWS\system32\shell32.dll
>
> 4. If you want it on the Quick Launch area, just move
> it there from the desktop.
>
>
> ju.c
>
>
> "GoldHawk" <GoldHawk DeleteThis @discussions.microsoft.com> wrote in message news:4D14FD5C-FF05-483A-9767-17D6EA0D6911@microsoft.com...
> > Is there any easy way to put a Turn Off and / or Restart button on the
> > desktop (without using Regedit) ?
> >
> > With thanks.
> |
|
| Back to top |
|
 |
GoldHawk External

Since: Apr 02, 2006 Posts: 10
|
Posted: Sat Feb 14, 2009 5:51 am Post subject: Re: Turn Off / Restart icon on desktop [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
Sorry, I must have copied the code incorrectly (possibly by putting the 2
lines into 1). I've tried this again and it works fine by opening up the
Standby / Turn Off / Restart / dialogue.
Thanks.
"GoldHawk" wrote:
> The solution for Shutdown and Re-start suggested by Big Al worked fine but
> just for my own education I thought I would try your suggestion.
>
> After putting shortcut on the desktop, I had this error message:
>
> Script: C:\WINDOWS\Shutdown by Mike.vbs
> Line: 1
> Char: 49
> Error: Expected end of statement
> Code: 800A0401
> Source: Microsoft VBScript compilation error
>
> Any further thoughts please ?
>
>
> "ju.c" wrote:
>
> > Create a desktop or quick launch shortcut to open the
> > "Turn off computer" dialog box:
> >
> > 1. Open Notepad and paste the following:
> >
> > Set wshshell = CreateObject("Shell.Application")
> > wshshell.ShutdownWindows
> >
> > 2. Save-as Shutdown_Box.vbs (or any name + .vbs)
> >
> > 3. Move the file somewhere then create a new shortcut
> > to it on the desktop. To change the icon to the
> > shutdown icon browse here and look for the icon in
> > the window: C:\WINDOWS\system32\shell32.dll
> >
> > 4. If you want it on the Quick Launch area, just move
> > it there from the desktop.
> >
> >
> > ju.c
> >
> >
> > "GoldHawk" <GoldHawk RemoveThis @discussions.microsoft.com> wrote in message news:4D14FD5C-FF05-483A-9767-17D6EA0D6911@microsoft.com...
> > > Is there any easy way to put a Turn Off and / or Restart button on the
> > > desktop (without using Regedit) ?
> > >
> > > With thanks.
> > |
|
| Back to top |
|
 |
ju.c External

Since: Jan 18, 2009 Posts: 14
|
Posted: Sat Feb 14, 2009 11:35 pm Post subject: Re: Turn Off / Restart icon on desktop [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
You're welcome, I'm just supplying another option.
PS: The shortcut for Hibernate is:
%WinDir%\system32\rundll32.exe powrprof.dll,SetSuspendState Hibernate
ju.c
"GoldHawk" <GoldHawk DeleteThis @discussions.microsoft.com> wrote in message news:063ADA36-FA1E-4358-AEAD-5722DC43905B@microsoft.com...
> Sorry, I must have copied the code incorrectly (possibly by putting the 2
> lines into 1). I've tried this again and it works fine by opening up the
> Standby / Turn Off / Restart / dialogue.
>
> Thanks.
>
> "GoldHawk" wrote:
>
>> The solution for Shutdown and Re-start suggested by Big Al worked fine but
>> just for my own education I thought I would try your suggestion.
>>
>> After putting shortcut on the desktop, I had this error message:
>>
>> Script: C:\WINDOWS\Shutdown by Mike.vbs
>> Line: 1
>> Char: 49
>> Error: Expected end of statement
>> Code: 800A0401
>> Source: Microsoft VBScript compilation error
>>
>> Any further thoughts please ?
>>
>>
>> "ju.c" wrote:
>>
>> > Create a desktop or quick launch shortcut to open the
>> > "Turn off computer" dialog box:
>> >
>> > 1. Open Notepad and paste the following:
>> >
>> > Set wshshell = CreateObject("Shell.Application")
>> > wshshell.ShutdownWindows
>> >
>> > 2. Save-as Shutdown_Box.vbs (or any name + .vbs)
>> >
>> > 3. Move the file somewhere then create a new shortcut
>> > to it on the desktop. To change the icon to the
>> > shutdown icon browse here and look for the icon in
>> > the window: C:\WINDOWS\system32\shell32.dll
>> >
>> > 4. If you want it on the Quick Launch area, just move
>> > it there from the desktop.
>> >
>> >
>> > ju.c
>> >
>> >
>> > "GoldHawk" <GoldHawk DeleteThis @discussions.microsoft.com> wrote in message news:4D14FD5C-FF05-483A-9767-17D6EA0D6911@microsoft.com...
>> > > Is there any easy way to put a Turn Off and / or Restart button on the
>> > > desktop (without using Regedit) ?
>> > >
>> > > With thanks.
>> > |
|
| Back to top |
|
 |
GoldHawk External

Since: Apr 02, 2006 Posts: 10
|
Posted: Sun Feb 15, 2009 4:16 am Post subject: Re: Turn Off / Restart icon on desktop [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
Works good. Thanks again. These are simple fixes but a bit of a learning curve.
Mike
"ju.c" wrote:
> You're welcome, I'm just supplying another option.
>
> PS: The shortcut for Hibernate is:
> %WinDir%\system32\rundll32.exe powrprof.dll,SetSuspendState Hibernate
>
>
> ju.c
>
>
> "GoldHawk" <GoldHawk DeleteThis @discussions.microsoft.com> wrote in message news:063ADA36-FA1E-4358-AEAD-5722DC43905B@microsoft.com...
> > Sorry, I must have copied the code incorrectly (possibly by putting the 2
> > lines into 1). I've tried this again and it works fine by opening up the
> > Standby / Turn Off / Restart / dialogue.
> >
> > Thanks.
> >
> > "GoldHawk" wrote:
> >
> >> The solution for Shutdown and Re-start suggested by Big Al worked fine but
> >> just for my own education I thought I would try your suggestion.
> >>
> >> After putting shortcut on the desktop, I had this error message:
> >>
> >> Script: C:\WINDOWS\Shutdown by Mike.vbs
> >> Line: 1
> >> Char: 49
> >> Error: Expected end of statement
> >> Code: 800A0401
> >> Source: Microsoft VBScript compilation error
> >>
> >> Any further thoughts please ?
> >>
> >>
> >> "ju.c" wrote:
> >>
> >> > Create a desktop or quick launch shortcut to open the
> >> > "Turn off computer" dialog box:
> >> >
> >> > 1. Open Notepad and paste the following:
> >> >
> >> > Set wshshell = CreateObject("Shell.Application")
> >> > wshshell.ShutdownWindows
> >> >
> >> > 2. Save-as Shutdown_Box.vbs (or any name + .vbs)
> >> >
> >> > 3. Move the file somewhere then create a new shortcut
> >> > to it on the desktop. To change the icon to the
> >> > shutdown icon browse here and look for the icon in
> >> > the window: C:\WINDOWS\system32\shell32.dll
> >> >
> >> > 4. If you want it on the Quick Launch area, just move
> >> > it there from the desktop.
> >> >
> >> >
> >> > ju.c
> >> >
> >> >
> >> > "GoldHawk" <GoldHawk DeleteThis @discussions.microsoft.com> wrote in message news:4D14FD5C-FF05-483A-9767-17D6EA0D6911@microsoft.com...
> >> > > Is there any easy way to put a Turn Off and / or Restart button on the
> >> > > desktop (without using Regedit) ?
> >> > >
> >> > > With thanks.
> >> >
> |
|
| Back to top |
|
 |
Tim Meddick External

Since: Feb 16, 2009 Posts: 128
|
Posted: Mon Feb 16, 2009 6:10 am Post subject: Re: Turn Off / Restart icon on desktop [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
Try typing this into a shortcut on your desktop:-
C:\WINDOWS\system32\RUNDLL32.EXE PowrProf.dll,SetSuspendState
The shortcut is to the file Rundll32.exe (which has a boring icon so you
might like to change that!) but it won't work unless you put a space and
then the rest of it (i.e PowrProf.dll,SetSuspendState) in there too.
This 'should' send your computer into hibernation. Tell me how it goes for
you?
Cheers, Tim Meddick, Peckham. |
|
| Back to top |
|
 |
GoldHawk External

Since: Apr 02, 2006 Posts: 10
|
Posted: Mon Feb 16, 2009 3:02 pm Post subject: Re: Turn Off / Restart icon on desktop [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
Tim
This is the same solution as suggested by ju.c on the other string of posts
and, as you say, works well. Does the job for me. With thanks.
Mike
Evesham UK
"Tim Meddick" wrote:
> Try typing this into a shortcut on your desktop:-
>
> C:\WINDOWS\system32\RUNDLL32.EXE PowrProf.dll,SetSuspendState
>
> The shortcut is to the file Rundll32.exe (which has a boring icon so you
> might like to change that!) but it won't work unless you put a space and
> then the rest of it (i.e PowrProf.dll,SetSuspendState) in there too.
>
> This 'should' send your computer into hibernation. Tell me how it goes for
> you?
>
> Cheers, Tim Meddick, Peckham.
>
>
> |
|
| Back to top |
|
 |
ju.c External

Since: Jan 18, 2009 Posts: 14
|
Posted: Mon Feb 16, 2009 10:25 pm Post subject: Re: Turn Off / Restart icon on desktop [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
Please don't delete previous posts, thanks.
"Tim Meddick" <timmeddick RemoveThis @gawab.com> wrote in message news:OBBCK3BkJHA.500@TK2MSFTNGP06.phx.gbl...
> Try typing this into a shortcut on your desktop:-
>
> C:\WINDOWS\system32\RUNDLL32.EXE PowrProf.dll,SetSuspendState
>
> The shortcut is to the file Rundll32.exe (which has a boring icon so you
> might like to change that!) but it won't work unless you put a space and
> then the rest of it (i.e PowrProf.dll,SetSuspendState) in there too.
>
> This 'should' send your computer into hibernation. Tell me how it goes for
> you?
>
> Cheers, Tim Meddick, Peckham. |
|
| Back to top |
|
 |
GoldHawk External

Since: Apr 02, 2006 Posts: 10
|
Posted: Sun Mar 08, 2009 10:08 am Post subject: Re: Turn Off / Restart icon on desktop [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
If that was directed at me, I apologise. I wasn't aware I was deleting posts,
and indeed, don't even know how I'd do that.
"ju.c" wrote:
> Please don't delete previous posts, thanks.
>
>
> "Tim Meddick" <timmeddick DeleteThis @gawab.com> wrote in message news:OBBCK3BkJHA.500@TK2MSFTNGP06.phx.gbl...
> > Try typing this into a shortcut on your desktop:-
> >
> > C:\WINDOWS\system32\RUNDLL32.EXE PowrProf.dll,SetSuspendState
> >
> > The shortcut is to the file Rundll32.exe (which has a boring icon so you
> > might like to change that!) but it won't work unless you put a space and
> > then the rest of it (i.e PowrProf.dll,SetSuspendState) in there too.
> >
> > This 'should' send your computer into hibernation. Tell me how it goes for
> > you?
> >
> > Cheers, Tim Meddick, Peckham.
> |
|
| Back to top |
|
 |
Twayne External

Since: Jan 08, 2009 Posts: 185
|
Posted: Sun Mar 08, 2009 7:07 pm Post subject: Re: Turn Off / Restart icon on desktop [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
"GoldHawk" <GoldHawk RemoveThis @discussions.microsoft.com> wrote in message
news:B1771712-B9AB-420D-B2ED-A22178AC7B98@microsoft.com...
> If that was directed at me, I apologise. I wasn't aware I was deleting
> posts,
> and indeed, don't even know how I'd do that.
He says that every once in awhile for some reason. It's irrelevent
because you can not delete or rescind in any way any post. Once it's
posted, it's there period and can't be deleted even by the one who
posted it.
HTH,
Twayne
>
> "ju.c" wrote:
>
>> Please don't delete previous posts, thanks.
>>
>>
>> "Tim Meddick" <timmeddick RemoveThis @gawab.com> wrote in message
>> news:OBBCK3BkJHA.500@TK2MSFTNGP06.phx.gbl...
>> > Try typing this into a shortcut on your desktop:-
>> >
>> > C:\WINDOWS\system32\RUNDLL32.EXE PowrProf.dll,SetSuspendState
>> >
>> > The shortcut is to the file Rundll32.exe (which has a boring icon
>> > so you
>> > might like to change that!) but it won't work unless you put a
>> > space and
>> > then the rest of it (i.e PowrProf.dll,SetSuspendState) in there
>> > too.
>> >
>> > This 'should' send your computer into hibernation. Tell me how it
>> > goes for
>> > you?
>> >
>> > Cheers, Tim Meddick, Peckham.
>> |
|
| Back to top |
|
 |
ju.c External

Since: Mar 05, 2009 Posts: 32
|
Posted: Mon Mar 09, 2009 2:16 pm Post subject: Re: Turn Off / Restart icon on desktop [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
"I wasn't aware I was deleting posts, and indeed, don't even
know how I'd do that."
Like this. See, there are no other posts. I deleted them. Hold
the left mouse button down and drag it, highlighting previous
messages, then click the delete button. |
|
| Back to top |
|
 |
Olórin External

Since: Feb 02, 2009 Posts: 52
|
Posted: Thu Mar 12, 2009 6:10 am Post subject: Re: Turn Off / Restart icon on desktop [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
"ju.c" <bibidybubidyboop RemoveThis @mailinator.com> wrote in message
news:u7AuZxPoJHA.4372@TK2MSFTNGP02.phx.gbl...
> "I wasn't aware I was deleting posts, and indeed, don't even
> know how I'd do that."
>
> Like this. See, there are no other posts. I deleted them. Hold
> the left mouse button down and drag it, highlighting previous
> messages, then click the delete button.
I think the misunderstanding is arising from the difference between snipping
the text of posts from earlier in a thread (which a responder can do) and
deleting posts in their entirety from the server (which is not easily
available to mere mortals). Whether this is a genuine misunderstanding or
just perversity is open to debate. |
|
| Back to top |
|
 |
Tim Meddick External

Since: Feb 16, 2009 Posts: 128
|
Posted: Sun Mar 15, 2009 6:10 pm Post subject: Re: Turn Off / Restart icon on desktop [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
No, it wasn't me who said anything about "deleting posts", in fact, I've had
the same accusations thrown my way and I really don't know why. I didn't
think deleting anything from my own local computer would affect the
newsserver whatsoever, AND, I don't even delete anything from my own
computer anyway! - So, anyone, what's going on with these slanderous
allegations?
--
Mystified, Tim Meddick, Peckham, London. |
|
| Back to top |
|
 |
Al Falfa External

Since: Mar 16, 2009 Posts: 10
|
Posted: Mon Mar 16, 2009 5:54 am Post subject: Re: Turn Off / Restart icon on desktop [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
Tim Meddick wrote:
> No, it wasn't me who said anything about "deleting posts", in fact, I've
> had the same accusations thrown my way and I really don't know why. I
> didn't think deleting anything from my own local computer would affect
> the newsserver whatsoever, AND, I don't even delete anything from my own
> computer anyway! - So, anyone, what's going on with these slanderous
> allegations?
Tim,
s/deleting posts/not quoting previous posts in this thread/
Outlook Express has a setting to quote the post to which you are
replying. You never quote. You never address anybody by name (many
people do not, especially ju.c himself).
In your post, it is not clear to whom you are replying, nor about what.
I know what you are talking about, because ju.c keeps on bleating about
people "deleting posts". Many have tried (in vain) to tell him how to
reword his sentence so that it would make sense, but he never responds.
He also never addresses anybody by name. Hence the confusion.
The irony here is that ju.c himself is the cause of the problem. By
top-posting his .sig *before* all the text that *he* quotes, he is
telling all proper newsreaders (Outlook Express is not a proper one)
to delete all text that follows the '-- ' marker.
Notice how *your* .sig has vanished.
The above is informational only. I am not telling you to quote, or
if you do quote, where to insert your reply. If you do top-post, at
least put your .sig *after* all quoted text (which is where it belongs). |
|
| Back to top |
|
 |
|
|
|
You can post new topics in this forum You can reply to topics in this forum You can edit your posts in this forum You can delete your posts in this forum You can vote in polls in this forum
|
| |
|
|