Windows XP Community - XPHeads



Two part question: SYSTRAY & need help with BAT or SCRIPT

microsoft.public.windowsxp.newusers


Reply
  #1 (permalink)  
Old 02-20-2008, 01:50 AM
Phil
 
Posts: n/a
Two part question: SYSTRAY & need help with BAT or SCRIPT
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.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 02-20-2008, 03:23 AM
John John
 
Posts: n/a
Re: Two part question: SYSTRAY & need help with BAT or SCRIPT
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.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 02-20-2008, 03:47 AM
pcbutts1
 
Posts: n/a
Re: Two part question: SYSTRAY & need help with BAT or SCRIPT
http://www.brothersoft.com/downloads...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" <Phil@discussions.microsoft.com> wrote in message
news:9672356B-C597-4F14-A8FC-1466F8C36AB0@microsoft.com...
> 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.



Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 02-20-2008, 05:37 PM
Phil
 
Posts: n/a
Re: Two part question: SYSTRAY & need help with BAT or SCRIPT
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.

>

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 02-20-2008, 09:21 PM
Phil
 
Posts: n/a
Re: Two part question: SYSTRAY & need help with BAT or SCRIPT
Hi,

Which one(s) do you recommend?

"pcbutts1" wrote:

> http://www.brothersoft.com/downloads...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" <Phil@discussions.microsoft.com> wrote in message
> news:9672356B-C597-4F14-A8FC-1466F8C36AB0@microsoft.com...
> > 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.

>
>
>

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 02-21-2008, 01:12 AM
John John
 
Posts: n/a
Re: Two part question: SYSTRAY & need help with BAT or SCRIPT
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.

>>

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 02-21-2008, 06:34 AM
Stan Brown
 
Posts: n/a
Re: Two part question: SYSTRAY & need help with BAT or SCRIPT
Tue, 19 Feb 2008 17:50:01 -0800 from Phil
<Phil@discussions.microsoft.com>:
> 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?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 02-21-2008, 10:20 PM
Phil
 
Posts: n/a
Re: Two part question: SYSTRAY & need help with BAT or SCRIPT
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
> <Phil@discussions.microsoft.com>:
> > 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?
>

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 02-22-2008, 10:03 AM
Stan Brown
 
Posts: n/a
Re: Two part question: SYSTRAY & need help with BAT or SCRIPT
Thu, 21 Feb 2008 14:20:00 -0800 from Phil
<Phil@discussions.microsoft.com>:
> 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?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 02-22-2008, 02:33 PM
Phil
 
Posts: n/a
Re: Two part question: SYSTRAY & need help with BAT or SCRIPT
"Stan Brown" wrote:

> Thu, 21 Feb 2008 14:20:00 -0800 from Phil
> <Phil@discussions.microsoft.com>:
> > 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.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
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

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



All times are GMT. The time now is 05:27 PM.


Registry Mechanic - Free Scan Now
Driver Scanner 2009 - Free Scan Now




Design by Vjacheslav Trushkin for phpBBStyles.com.
Powered by vBulletin® Version 3.6.7
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.1.0

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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74