|
-
Jun 8th, 2010, 04:09 PM
#1
Thread Starter
Addicted Member
Product Key Mess x64 and x32
hi vb
Write ive written a product key viewer ... i Have 64bit i can view my product key if i debug it in 64bit
however if i debug it in 32bit other programs such as office display
but my product key wont display then
i need to know how to get them working together
or how to make x64 n x86 versions? any ideas
But the only thing is its complied in a webbrowser ive made too soo if i debug it x64 then flash wont play but product key displays and if i debug it in x86 then office will display product key wont display and flash works on the browser? i need help any ideas please
obtw this is still my first application !!!
write back
-
Jun 8th, 2010, 07:04 PM
#2
Re: Product Key Mess x64 and x32
How are you gathering the keys? More than likely, it's through the registry. In that case, when on a 64 bit machine, MS apps are installed in the 64 bit key and 32 bit key when on a 32 bit OS.
You'll need to query the appropriate keys more than likely.
But, in order for us to help further, more detailed information must be provided.
CodeBank contributions: Process Manager, Temp File Cleaner
 Originally Posted by SJWhiteley
"game trainer" is the same as calling the act of robbing a bank "wealth redistribution"....
-
Jun 8th, 2010, 08:36 PM
#3
Thread Starter
Addicted Member
Re: Product Key Mess x64 and x32
yes its through the registry its just that when i debug it on x64 it will show my key but when on x86 it wont but it will show x86 programs product key i wont them both to display no matter what if it a 64 or 32 bit computer and how what kind of details???
-
Jun 8th, 2010, 08:54 PM
#4
Re: Product Key Mess x64 and x32
I just told you. There are two main keys for applications. In reality, there's like 6 or something. But, there are two keys you need to worry about (most likely):
Code:
HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall
HKLM\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall
Without knowing which key you're querying, I can't give you specific advice. I'm only assuming you're querying one of these keys and not the other.
The first key stores most programs that are 32 bit and the latter stores most applications that are 64 bit.
CodeBank contributions: Process Manager, Temp File Cleaner
 Originally Posted by SJWhiteley
"game trainer" is the same as calling the act of robbing a bank "wealth redistribution"....
-
Jun 8th, 2010, 09:04 PM
#5
Thread Starter
Addicted Member
Re: Product Key Mess x64 and x32
okies dude here is the information mate
These Keys Are From The Code Reg
Code:
XPVista7ProductID.Text = My.Computer.Registry.GetValue("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsNT\CurrentVersion", "ProductID", Nothing)
XPVista7ProductID2.Text = My.Computer.Registry.GetValue("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DefaultProductKey", "ProductID", Nothing)
"I want them both show up on either platform"
Platform = 32 bit or 64 bit
if thats possible so what do i do next and thank you for helping me!
-
Jun 8th, 2010, 09:16 PM
#6
Re: Product Key Mess x64 and x32
Um... I thought you were trying to grab the key of an application. But those reg keys don't apply to apps. So, are you trying to find the product key to Windows?
CodeBank contributions: Process Manager, Temp File Cleaner
 Originally Posted by SJWhiteley
"game trainer" is the same as calling the act of robbing a bank "wealth redistribution"....
-
Jun 8th, 2010, 09:25 PM
#7
Thread Starter
Addicted Member
Re: Product Key Mess x64 and x32
yes the product key for windows 7 :
ive got the product key and write the decoder just that if my app was running on x86 it would display fine cause it only displays x86 product keys then but cause ive just upgraded to x64 today you see and and if i run my app in x86 still then my product key for x64 wont dispay and ms web browser flash wont work ......................You got any ideas ..................... o would i have to build another app for x86 and 1 for x64 ???
thanks
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|