 |
|
 |
|
Next: I want to Switch from MS Firewall to Zone Alarm: ..
|
| Author |
Message |
External

Since: May 12, 2006 Posts: 59
|
(Msg. 1) Posted: Tue Feb 19, 2008 5:50 pm
Post subject: Two part question: SYSTRAY & need help with BAT or SCRIPT Archived from groups: microsoft>public>windowsxp>newusers (more info?)
|
|
|
Hello,
I have a video game that will only run if I shut down all BUT the SYSTRAY and
EXPLORER.EXE processes, so I've been told by Tech Support.
The first question is this: If you look at the running processes, what is
the actual IMAGE NAME of SYSTRAY? I don't see anything in there that says
SYSTRAY.
As I said earlier, the only way to make the game run is to delete all of the
process except the aforementioned two. As you can imagine, it is very
tedious to sit there and delete all of the undesired processes one-by-one.
So my second question is this: Is there a way to write a BAT file so that I
can get only the above mentioned processes to load?
If you have a better idea on how to approach this (instead of using a BAT
file), like a script (or whatever), I'm all ears.
I have ADMIN rights to this PC, also.
Using XP Pro, SP2 on a 2006 Dell XPS600, with 256mb nVidia video card, with
1gb RAM.
TIA. >> Stay informed about: Two part question: SYSTRAY & need help with BAT or SCRIPT |
|
| Back to top |
|
 |  |
External

Since: Nov 24, 2007 Posts: 50
|
(Msg. 2) Posted: Tue Feb 19, 2008 7:47 pm
Post subject: Re: Two part question: SYSTRAY & need help with BAT or SCRIPT [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
http://www.brothersoft.com/downloads/running-processes.html
--
Newsgroup Trolls. Read about mine here http://www.pcbutts1.com/downloads
The list grows. Leythos the stalker http://www.leythosthestalker.com, David
H. Lipman, Max M Wachtell III aka What's in a Name?, Fitz, Beauregard T.
Shagnasty,Rhonda Lea Kirk, Meat Plow, F Kwatu F, George Orwell
"Phil" wrote in message
> Hello,
>
> I have a video game that will only run if I shut down all BUT the SYSTRAY
> and
> EXPLORER.EXE processes, so I've been told by Tech Support.
>
> The first question is this: If you look at the running processes, what is
> the actual IMAGE NAME of SYSTRAY? I don't see anything in there that says
> SYSTRAY.
>
> As I said earlier, the only way to make the game run is to delete all of
> the
> process except the aforementioned two. As you can imagine, it is very
> tedious to sit there and delete all of the undesired processes one-by-one.
>
> So my second question is this: Is there a way to write a BAT file so that
> I
> can get only the above mentioned processes to load?
>
> If you have a better idea on how to approach this (instead of using a BAT
> file), like a script (or whatever), I'm all ears.
>
> I have ADMIN rights to this PC, also.
>
> Using XP Pro, SP2 on a 2006 Dell XPS600, with 256mb nVidia video card,
> with
> 1gb RAM.
>
> TIA. >> Stay informed about: Two part question: SYSTRAY & need help with BAT or SCRIPT |
|
| Back to top |
|
 |  |
External

Since: Jun 05, 2004 Posts: 1099
|
(Msg. 3) Posted: Tue Feb 19, 2008 11:23 pm
Post subject: Re: Two part question: SYSTRAY & need help with BAT or SCRIPT [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
I think that Tech Support were probably reading from the Windows 9x
pages. I have never seen systray.exe shown as a running process on any
NT versions (Windows NT/2000/XP/Vista), and while killing Explorer.exe
on Windows 9x effectively kills the Windows session, Explorer.exe is
hardly a critical process on NT versions and few programs actually need
Explorer.exe running to run properly, Explorer.exe can usually be killed
with little side effects.
Also, you cannot effectively run Windows XP without six critical system
services, if you try to kill these services Windows will crash:
- Csrss.exe (Client/Server Runtime Server Subsystem)
- Lsass.exe (Local Security Authority Service)
- Smss.exe (Session Manager Subsystem)
- RpcSs (Remote Procedure Call Server Service)*
- Winlogon.exe (Windows logon process)
- services.exe (Windows Service Controller)
* Runs inside one of the SVChost.exe. Not critical in its own right but
hardly anything runs without it.
So there you have it, the 6 critical processes, without these 6 items
things don't work too well! Along with that the Task Manager would show:
- System (the kernel or kernel-mode threads)
- System Idle Process (Not a process or service but a single thread that
runs on each processor, its sole task is to account for processor time
spent doing nothing.)
And there you have it, plain and simply the minimum 8 items that will or
should always show in the Task Manager, add the Task Manager itself to
the list and it will give you 9 processes. Without a doubt the Tech
Support were giving you a Windows 9x solution or they were half asleep,
trying to kill these critical services will end the Windows session.
To disable unnecessary processes or services when you want to run your
game you could craft a batch file but you can also do this with
FSAutoStart. This utility was made for Flight Sim fans who need to
squeeze all the juice from their machines when they play but it can be
used for the same purpose for any software or game
http://kensalter.com/software/
John
Phil wrote:
> Hello,
>
> I have a video game that will only run if I shut down all BUT the SYSTRAY and
> EXPLORER.EXE processes, so I've been told by Tech Support.
>
> The first question is this: If you look at the running processes, what is
> the actual IMAGE NAME of SYSTRAY? I don't see anything in there that says
> SYSTRAY.
>
> As I said earlier, the only way to make the game run is to delete all of the
> process except the aforementioned two. As you can imagine, it is very
> tedious to sit there and delete all of the undesired processes one-by-one.
>
> So my second question is this: Is there a way to write a BAT file so that I
> can get only the above mentioned processes to load?
>
> If you have a better idea on how to approach this (instead of using a BAT
> file), like a script (or whatever), I'm all ears.
>
> I have ADMIN rights to this PC, also.
>
> Using XP Pro, SP2 on a 2006 Dell XPS600, with 256mb nVidia video card, with
> 1gb RAM.
>
> TIA. >> Stay informed about: Two part question: SYSTRAY & need help with BAT or SCRIPT |
|
| Back to top |
|
 |  |
External

Since: May 12, 2006 Posts: 59
|
(Msg. 4) Posted: Wed Feb 20, 2008 9:37 am
Post subject: Re: Two part question: SYSTRAY & need help with BAT or SCRIPT [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
John,
Thanks for the VERY informative reply. I have gone to Ken Salter's site and
downloaded FSAutoStart and will give it ago.
Thanks again.
Cheers,
Phil
"John John" wrote:
> I think that Tech Support were probably reading from the Windows 9x
> pages. I have never seen systray.exe shown as a running process on any
> NT versions (Windows NT/2000/XP/Vista), and while killing Explorer.exe
> on Windows 9x effectively kills the Windows session, Explorer.exe is
> hardly a critical process on NT versions and few programs actually need
> Explorer.exe running to run properly, Explorer.exe can usually be killed
> with little side effects.
>
> Also, you cannot effectively run Windows XP without six critical system
> services, if you try to kill these services Windows will crash:
>
> - Csrss.exe (Client/Server Runtime Server Subsystem)
> - Lsass.exe (Local Security Authority Service)
> - Smss.exe (Session Manager Subsystem)
> - RpcSs (Remote Procedure Call Server Service)*
> - Winlogon.exe (Windows logon process)
> - services.exe (Windows Service Controller)
>
> * Runs inside one of the SVChost.exe. Not critical in its own right but
> hardly anything runs without it.
>
> So there you have it, the 6 critical processes, without these 6 items
> things don't work too well! Along with that the Task Manager would show:
>
> - System (the kernel or kernel-mode threads)
> - System Idle Process (Not a process or service but a single thread that
> runs on each processor, its sole task is to account for processor time
> spent doing nothing.)
>
> And there you have it, plain and simply the minimum 8 items that will or
> should always show in the Task Manager, add the Task Manager itself to
> the list and it will give you 9 processes. Without a doubt the Tech
> Support were giving you a Windows 9x solution or they were half asleep,
> trying to kill these critical services will end the Windows session.
>
> To disable unnecessary processes or services when you want to run your
> game you could craft a batch file but you can also do this with
> FSAutoStart. This utility was made for Flight Sim fans who need to
> squeeze all the juice from their machines when they play but it can be
> used for the same purpose for any software or game
> http://kensalter.com/software/
>
> John
>
>
> Phil wrote:
>
> > Hello,
> >
> > I have a video game that will only run if I shut down all BUT the SYSTRAY and
> > EXPLORER.EXE processes, so I've been told by Tech Support.
> >
> > The first question is this: If you look at the running processes, what is
> > the actual IMAGE NAME of SYSTRAY? I don't see anything in there that says
> > SYSTRAY.
> >
> > As I said earlier, the only way to make the game run is to delete all of the
> > process except the aforementioned two. As you can imagine, it is very
> > tedious to sit there and delete all of the undesired processes one-by-one.
> >
> > So my second question is this: Is there a way to write a BAT file so that I
> > can get only the above mentioned processes to load?
> >
> > If you have a better idea on how to approach this (instead of using a BAT
> > file), like a script (or whatever), I'm all ears.
> >
> > I have ADMIN rights to this PC, also.
> >
> > Using XP Pro, SP2 on a 2006 Dell XPS600, with 256mb nVidia video card, with
> > 1gb RAM.
> >
> > TIA.
> >> Stay informed about: Two part question: SYSTRAY & need help with BAT or SCRIPT |
|
| Back to top |
|
 |  |
External

Since: May 12, 2006 Posts: 59
|
(Msg. 5) Posted: Wed Feb 20, 2008 1:21 pm
Post subject: Re: Two part question: SYSTRAY & need help with BAT or SCRIPT [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Hi,
Which one(s) do you recommend?
"pcbutts1" wrote:
> http://www.brothersoft.com/downloads/running-processes.html
>
> --
>
> Newsgroup Trolls. Read about mine here http://www.pcbutts1.com/downloads
> The list grows. Leythos the stalker http://www.leythosthestalker.com, David
> H. Lipman, Max M Wachtell III aka What's in a Name?, Fitz, Beauregard T.
> Shagnasty,Rhonda Lea Kirk, Meat Plow, F Kwatu F, George Orwell
>
>
>
> "Phil" wrote in message
>
> > Hello,
> >
> > I have a video game that will only run if I shut down all BUT the SYSTRAY
> > and
> > EXPLORER.EXE processes, so I've been told by Tech Support.
> >
> > The first question is this: If you look at the running processes, what is
> > the actual IMAGE NAME of SYSTRAY? I don't see anything in there that says
> > SYSTRAY.
> >
> > As I said earlier, the only way to make the game run is to delete all of
> > the
> > process except the aforementioned two. As you can imagine, it is very
> > tedious to sit there and delete all of the undesired processes one-by-one.
> >
> > So my second question is this: Is there a way to write a BAT file so that
> > I
> > can get only the above mentioned processes to load?
> >
> > If you have a better idea on how to approach this (instead of using a BAT
> > file), like a script (or whatever), I'm all ears.
> >
> > I have ADMIN rights to this PC, also.
> >
> > Using XP Pro, SP2 on a 2006 Dell XPS600, with 256mb nVidia video card,
> > with
> > 1gb RAM.
> >
> > TIA.
>
>
> >> Stay informed about: Two part question: SYSTRAY & need help with BAT or SCRIPT |
|
| Back to top |
|
 |  |
External

Since: Jun 05, 2004 Posts: 1099
|
(Msg. 6) Posted: Wed Feb 20, 2008 9:12 pm
Post subject: Re: Two part question: SYSTRAY & need help with BAT or SCRIPT [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
You're welcome.
John
Phil wrote:
> John,
>
> Thanks for the VERY informative reply. I have gone to Ken Salter's site and
> downloaded FSAutoStart and will give it ago.
>
> Thanks again.
>
> Cheers,
>
> Phil
>
> "John John" wrote:
>
>
>>I think that Tech Support were probably reading from the Windows 9x
>>pages. I have never seen systray.exe shown as a running process on any
>>NT versions (Windows NT/2000/XP/Vista), and while killing Explorer.exe
>>on Windows 9x effectively kills the Windows session, Explorer.exe is
>>hardly a critical process on NT versions and few programs actually need
>>Explorer.exe running to run properly, Explorer.exe can usually be killed
>>with little side effects.
>>
>>Also, you cannot effectively run Windows XP without six critical system
>>services, if you try to kill these services Windows will crash:
>>
>>- Csrss.exe (Client/Server Runtime Server Subsystem)
>>- Lsass.exe (Local Security Authority Service)
>>- Smss.exe (Session Manager Subsystem)
>>- RpcSs (Remote Procedure Call Server Service)*
>>- Winlogon.exe (Windows logon process)
>>- services.exe (Windows Service Controller)
>>
>>* Runs inside one of the SVChost.exe. Not critical in its own right but
>>hardly anything runs without it.
>>
>>So there you have it, the 6 critical processes, without these 6 items
>>things don't work too well! Along with that the Task Manager would show:
>>
>>- System (the kernel or kernel-mode threads)
>>- System Idle Process (Not a process or service but a single thread that
>>runs on each processor, its sole task is to account for processor time
>>spent doing nothing.)
>>
>>And there you have it, plain and simply the minimum 8 items that will or
>>should always show in the Task Manager, add the Task Manager itself to
>>the list and it will give you 9 processes. Without a doubt the Tech
>>Support were giving you a Windows 9x solution or they were half asleep,
>>trying to kill these critical services will end the Windows session.
>>
>>To disable unnecessary processes or services when you want to run your
>>game you could craft a batch file but you can also do this with
>>FSAutoStart. This utility was made for Flight Sim fans who need to
>>squeeze all the juice from their machines when they play but it can be
>>used for the same purpose for any software or game
>>http://kensalter.com/software/
>>
>>John
>>
>>
>>Phil wrote:
>>
>>
>>>Hello,
>>>
>>>I have a video game that will only run if I shut down all BUT the SYSTRAY and
>>>EXPLORER.EXE processes, so I've been told by Tech Support.
>>>
>>>The first question is this: If you look at the running processes, what is
>>>the actual IMAGE NAME of SYSTRAY? I don't see anything in there that says
>>>SYSTRAY.
>>>
>>>As I said earlier, the only way to make the game run is to delete all of the
>>>process except the aforementioned two. As you can imagine, it is very
>>>tedious to sit there and delete all of the undesired processes one-by-one.
>>>
>>>So my second question is this: Is there a way to write a BAT file so that I
>>>can get only the above mentioned processes to load?
>>>
>>>If you have a better idea on how to approach this (instead of using a BAT
>>>file), like a script (or whatever), I'm all ears.
>>>
>>>I have ADMIN rights to this PC, also.
>>>
>>>Using XP Pro, SP2 on a 2006 Dell XPS600, with 256mb nVidia video card, with
>>>1gb RAM.
>>>
>>>TIA.
>> >> Stay informed about: Two part question: SYSTRAY & need help with BAT or SCRIPT |
|
| Back to top |
|
 |  |
External

Since: Jan 16, 2005 Posts: 686
|
(Msg. 7) Posted: Thu Feb 21, 2008 1:34 am
Post subject: Re: Two part question: SYSTRAY & need help with BAT or SCRIPT [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Tue, 19 Feb 2008 17:50:01 -0800 from Phil
:
> I have a video game that will only run if I shut down all BUT the SYSTRAY and
> EXPLORER.EXE processes, so I've been told by Tech Support.
See answers in the other newsgroup where you posted.
Please don't multipost.
--
Stan Brown, Oak Road Systems, Tompkins County, New York, USA
http://OakRoadSystems.com
A: Maybe because some people are too annoyed by top posting.
Q: Why do I not get an answer to my question(s)?
A: Because it messes up the order in which people normally read text.
Q: Why is top posting such a bad thing? >> Stay informed about: Two part question: SYSTRAY & need help with BAT or SCRIPT |
|
| Back to top |
|
 |  |
External

Since: May 12, 2006 Posts: 59
|
(Msg. 8) Posted: Thu Feb 21, 2008 2:20 pm
Post subject: Re: Two part question: SYSTRAY & need help with BAT or SCRIPT [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Hi Stan,
I DID see your reply in the "Customizing Windows" forum, but it looked like
it only answered 1/2 of my question. Also, from what I've read, it has been
suggested that SYSTRAY is NOT related to EXPLORER, but I could be wrong.
Also, I hope you can understand why I had cross posted. You see, I had
originally posted to the "Customizing Windows" forum (at the beginning of the
day) and initially got no useful answers by the end of the day.
I gave up on that forum and then posted in the "New Users Discussions";
which is somewhat ironic considering that this is hardly something that a
"New User" would be contemplating.
Oh well. Like I said, I hope you can understand.
"Stan Brown" wrote:
> Tue, 19 Feb 2008 17:50:01 -0800 from Phil
> :
> > I have a video game that will only run if I shut down all BUT the SYSTRAY and
> > EXPLORER.EXE processes, so I've been told by Tech Support.
>
> See answers in the other newsgroup where you posted.
>
> Please don't multipost.
>
> --
> Stan Brown, Oak Road Systems, Tompkins County, New York, USA
> http://OakRoadSystems.com
> A: Maybe because some people are too annoyed by top posting.
> Q: Why do I not get an answer to my question(s)?
> A: Because it messes up the order in which people normally read text.
> Q: Why is top posting such a bad thing?
> >> Stay informed about: Two part question: SYSTRAY & need help with BAT or SCRIPT |
|
| Back to top |
|
 |  |
External

Since: Jan 16, 2005 Posts: 686
|
(Msg. 9) Posted: Fri Feb 22, 2008 5:03 am
Post subject: Re: Two part question: SYSTRAY & need help with BAT or SCRIPT [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Thu, 21 Feb 2008 14:20:00 -0800 from Phil
:
> Also, I hope you can understand why I had cross posted.
You did NOT crosspost, which would have been venial at worst; you
multiposted.
--
Stan Brown, Oak Road Systems, Tompkins County, New York, USA
http://OakRoadSystems.com
A: Maybe because some people are too annoyed by top posting.
Q: Why do I not get an answer to my question(s)?
A: Because it messes up the order in which people normally read text.
Q: Why is top posting such a bad thing? >> Stay informed about: Two part question: SYSTRAY & need help with BAT or SCRIPT |
|
| Back to top |
|
 |  |
External

Since: May 12, 2006 Posts: 59
|
(Msg. 10) Posted: Fri Feb 22, 2008 6:33 am
Post subject: Re: Two part question: SYSTRAY & need help with BAT or SCRIPT [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
"Stan Brown" wrote:
> Thu, 21 Feb 2008 14:20:00 -0800 from Phil
> :
> > Also, I hope you can understand why I had cross posted.
>
> You did NOT crosspost, which would have been venial at worst; you
> multiposted.
>
> --
> Stan Brown, Oak Road Systems, Tompkins County, New York, USA
> http://OakRoadSystems.com
> A: Maybe because some people are too annoyed by top posting.
> Q: Why do I not get an answer to my question(s)?
> A: Because it messes up the order in which people normally read text.
> Q: Why is top posting such a bad thing?
>
OK. Thanks f or the clarification. It makes sense now.
I guess next time it will be better to use the cross post box provided
below, so that the readers will at least know that the thread has been
cross-posted, so they won't waste time answering it in another forum. >> Stay informed about: Two part question: SYSTRAY & need help with BAT or SCRIPT |
|
| 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
|
|
|
|
 |
|
|