A Windows XP help forum. PCbanter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » PCbanter forum » Microsoft Windows 7 » Windows 7 Forum
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Firefox 64 bit issue



 
 
Thread Tools Rate Thread Display Modes
  #16  
Old November 20th 17, 03:42 AM posted to alt.windows7.general
Paul[_32_]
external usenet poster
 
Posts: 11,873
Default Firefox 64 bit issue

Jeff Barnett wrote:
Jeff Barnett wrote on 11/19/2017 12:11 AM:
I'm currently running FF Version 56.0.2 which claims it's a 64 bit
program. However FF including the exe files running are found in the
"Program Files (x86)" folder. Any clue as to what's going on? If so,
please share.


I have a second question: How do you inspect an executing
application/process to determine if it's running 32 or 64 bits?


Task Manager marks the entries with an asterisk or something.
The situation shown here, is a 64-bit OS which runs 32 bit
or 64 bit processes. A 32-bit OS doesn't need to mark them.

https://i.stack.imgur.com/wDhLY.jpg

*******

Examining a PE EXE file is covered here. Before you
run an EXE, you can check it.

https://superuser.com/questions/3584...bit-on-windows

"If you have a HEX-Editor available, the offset of
PE Signature is located at offset 0x3C.

The signature is PE\0\0 (letters "P" and "E"
followed by two null bytes), followed by a
two byte Machine Type in Little Endian.

The relevant values are 0x8664 for x64 executable
and 0x014c for x86.

There are a lot more possible values, but you probably
won't ever encounter any of these, or be able to run
such executables on your Windows PC.

Full list of machine types:

https://msdn.microsoft.com/en-us/lib...#machine_types
"

Here is an example. In the example, notice the offset
isn't 0x3C as promised. Simply "walk" along until you
spot "PE", then check the identifier.

https://s8.postimg.org/qma3vna2d/EXE...ff_Example.gif

There are other possibilities. I don't know how "packers"
factor into such identifications. Whether the PE part is
still visible or not. You would think it would have to
remain visible, so the loader can start it unpacking.

Paul
Ads
  #17  
Old November 20th 17, 04:37 AM posted to alt.windows7.general
pyotr filipivich
external usenet poster
 
Posts: 752
Default Firefox 64 bit issue

Jeff Barnett on Sun, 19 Nov 2017 00:11:32 -0700 typed
in alt.windows7.general the following:
I'm currently running FF Version 56.0.2 which claims it's a 64 bit
program. However FF including the exe files running are found in the
"Program Files (x86)" folder. Any clue as to what's going on? If so,
please share.


Even money Firefox just installed the new files where the old
files were.
--
pyotr filipivich
Next month's Panel: Graft - Boon or blessing?
  #18  
Old November 20th 17, 05:06 AM posted to alt.windows7.general
Jeff Barnett[_2_]
external usenet poster
 
Posts: 298
Default Firefox 64 bit issue

Good Guy wrote on 11/19/2017 6:59 PM:
On 20/11/2017 01:49, Jeff Barnett wrote:
Jeff Barnett wrote on 11/19/2017 12:11 AM:
I'm currently running FF Version 56.0.2 which claims it's a 64 bit
program. However FF including the exe files running are found in the
Â*"Program Files (x86)" folder. Any clue as to what's going on? If so,
Â*please share.


I have a second question: How do you inspect an executing
application/process to determine if it's running 32 or 64 bits?


If exe file is inÂ* "Program Files (x86)" folder then 100% it is 32 bit
version.

64 bit version will look like this:

https://support.cdn.mozilla.net/medi...-33-453995.png
https://support.cdn.mozilla.net/media/uploads/gallery/images/2017-10-14-05-20-33-453995.png


The picture quite clearly states that it is a 64 bit version.

I always thought that Windows users are relatively more intelligent than
users of other operating systems but some of the questions being asked
and answered here remains much to be desired.





--
With over 500 million devices now running Windows 10, customer
satisfaction is higher than any previous version of windows.


Thanks but that's not what I asked.
--
Jeff Barnett
  #19  
Old November 20th 17, 05:11 AM posted to alt.windows7.general
Jeff Barnett[_2_]
external usenet poster
 
Posts: 298
Default Firefox 64 bit issue

Paul wrote on 11/19/2017 8:42 PM:
Jeff Barnett wrote:
Jeff Barnett wrote on 11/19/2017 12:11 AM:
I'm currently running FF Version 56.0.2 which claims it's a 64 bit
program. However FF including the exe files running are found in the
Â*"Program Files (x86)" folder. Any clue as to what's going on? If so,
Â*please share.


I have a second question: How do you inspect an executing
application/process to determine if it's running 32 or 64 bits?


Task Manager marks the entries with an asterisk or something.
The situation shown here, is a 64-bit OS which runs 32 bit
or 64 bit processes. A 32-bit OS doesn't need to mark them.

https://i.stack.imgur.com/wDhLY.jpg

*******

Examining a PE EXE file is covered here. Before you
run an EXE, you can check it.

https://superuser.com/questions/3584...bit-on-windows


Â*Â* "If you have a HEX-Editor available, the offset of
Â*Â*Â* PE Signature is located at offset 0x3C.

Â*Â*Â* The signature is PE\0\0 (letters "P" and "E"
Â*Â*Â* followed by two null bytes), followed by a
Â*Â*Â* two byte Machine Type in Little Endian.

Â*Â*Â* The relevant values are 0x8664 for x64 executable
Â*Â*Â* and 0x014c for x86.

Â*Â*Â* There are a lot more possible values, but you probably
Â*Â*Â* won't ever encounter any of these, or be able to run
Â*Â*Â* such executables on your Windows PC.

Â*Â*Â* Full list of machine types:


https://msdn.microsoft.com/en-us/lib...#machine_types

Â*Â* "

Here is an example. In the example, notice the offset
isn't 0x3C as promised. Simply "walk" along until you
spot "PE", then check the identifier.

https://s8.postimg.org/qma3vna2d/EXE...ff_Example.gif

There are other possibilities. I don't know how "packers"
factor into such identifications. Whether the PE part is
still visible or not. You would think it would have to
remain visible, so the loader can start it unpacking.

Â*Â* Paul


Thanks.
--
Jeff Barnett
  #20  
Old November 20th 17, 08:28 AM posted to alt.windows7.general
tesla sTinker
external usenet poster
 
Posts: 134
Default Firefox 64 bit issue

check under the help menu, then the about. If its 64 bit firefox,
it will say so in the about window. IE sets up both a 32 bit and 64 bit
version, which is unlike firefox in its settup. Using both program file
folders and dual programs. But as the other guy had already said, it
does not matter which folder it sets itself up in. I have
numerous 64 bit programs in the x86 folder that setup there.

IF its 64 bit, it will say it in the about window under help. IF not,
it will not say it. We have firefox also, on another w7 machine.
And, its 64 bit, & says it. We also have it on Unix. So does ie. Yet,
if you want to get serious in the Resource Monitor, under the CPU tab,
you can monitor
the process in the window, w7 op system, by checking the program, and
following the PID number in the processes reading the associate handles
tab under cpu monitor. In that window, it will
clearly state under some of those processes, the x64 in its descript of
itself, which part of the program it is running. In the version of
ie, both programs run when you open the 64 bit version. So you get two
differ PID numbers. 32 bit and 64 bit. Whether firefox does this or
not, I am not 100percent certain. I dont think it does, so you will not
have to decifer between a 32 bit and a 64 bit versions of the differ PID
numbers when checking it.

You asked, Associated Handles.
But make certain you check the program exe in the check box in
processes, in order
to get the Associated Handles to show themselves in the AH window of the
RM program

On 11/19/2017 5:49 PM, Jeff Barnett scribbled:
Jeff Barnett wrote on 11/19/2017 12:11 AM:
I'm currently running FF Version 56.0.2 which claims it's a 64 bit
program. However FF including the exe files running are found in the
"Program Files (x86)" folder. Any clue as to what's going on? If so,
please share.


I have a second question: How do you inspect an executing
application/process to determine if it's running 32 or 64 bits?

  #21  
Old November 21st 17, 12:31 AM posted to alt.windows7.general
Good Guy[_2_]
external usenet poster
 
Posts: 3,354
Default Firefox 64 bit issue

On 20/11/2017 05:06, Jeff Barnett wrote:
Good Guy wrote on 11/19/2017 6:59 PM:
On 20/11/2017 01:49, Jeff Barnett wrote:
Jeff Barnett wrote on 11/19/2017 12:11 AM:
I'm currently running FF Version 56.0.2 which claims it's a 64 bit
program. However FF including the exe files running are found in the
"Program Files (x86)" folder. Any clue as to what's going on? If so,
please share.

I have a second question: How do you inspect an executing
application/process to determine if it's running 32 or 64 bits?


If exe file is in "Program Files (x86)" folder then 100% it is 32
bit version.

64 bit version will look like this:

https://support.cdn.mozilla.net/medi...-33-453995.png
https://support.cdn.mozilla.net/media/uploads/gallery/images/2017-10-14-05-20-33-453995.png



The picture quite clearly states that it is a 64 bit version.

I always thought that Windows users are relatively more intelligent
than users of other operating systems but some of the questions being
asked and answered here remains much to be desired.





--
With over 500 million devices now running Windows 10, customer
satisfaction is higher than any previous version of windows.


Thanks but that's not what I asked.



What did you ask?


--
With over 500 million devices now running Windows 10, customer
satisfaction is higher than any previous version of windows.

 




Thread Tools
Display Modes 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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off






All times are GMT +1. The time now is 05:31 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 PCbanter.
The comments are property of their posters.