I need Mark V help

H

HKReader HKfai

Mark,

Thanks for your concern on my request.
Today I have made a scritp to run for uninstall folder in
registry, but only folder name provided.

Now I would like to solve how could it provide more
details in each software folder as I posted my request
before. It could includes more details rather than
displayname and displayvision only.

Thanks a million.


const HKEY_LOCAL_MACHINE = &H80000002
strComputer = "."
Set StdOut = WScript.StdOut
Set oReg=GetObject("winmgmts:
{impersonationLevel=impersonate}!\\" &_
strComputer & "\root\default:StdRegProv")
strKeyPath
= "SOFTWARE\Microsoft\Windows\Currentversion\uninstall"
oReg.EnumKey HKEY_LOCAL_MACHINE, strKeyPath, arrSubKeys
For Each subkey In arrSubKeys
StdOut.WriteLine subkey
Next
 
M

Mark V

HKReader HKfai wrote in
Mark,

Thanks for your concern on my request.
Today I have made a scritp to run for uninstall folder in
registry, but only folder name provided.

Now I would like to solve how could it provide more
details in each software folder as I posted my request
before. It could includes more details rather than
displayname and displayvision only.

Thanks a million.


const HKEY_LOCAL_MACHINE = &H80000002
strComputer = "."
Set StdOut = WScript.StdOut
Set oReg=GetObject("winmgmts:
{impersonationLevel=impersonate}!\\" &_
strComputer & "\root\default:StdRegProv")
strKeyPath
= "SOFTWARE\Microsoft\Windows\Currentversion\uninstall"
oReg.EnumKey HKEY_LOCAL_MACHINE, strKeyPath, arrSubKeys
For Each subkey In arrSubKeys
StdOut.WriteLine subkey
Next

For those interested this should be part of thread

From: "HKReader HKfai" <[email protected]>
Subject: Software Uninstall Record
Date: Sat, 2 Aug 2003 05:37:56 -0700
Message-ID: <[email protected]>

Sorry "HKReader HKfai" I don't do VBS (et.al).

If I had the need to do what (I think) you want, I'd arrange to
export the key (and contents) to a .reg (text) file using perhaps
regedit.exe or reg.exe. Then attack the problem with a decent
scripting language to parse and reformat the output.... I would use
REXX (lang. of choice) but other scripting should work as well.

Perhaps a newsgroup for VBS or WinMgmt would be more helpful?

I am not clear on what your final goal is though. It seems that much
of the most useful information is available from 3rd-party utilities
(as mentioned in other thread). Or even just a export of that key to
a text (.reg) file? ...

Perhaps I don't understand what you want as the final result.
 
M

Mark V

HKReader HKfai wrote in
Mark,

Thanks for your concern on my request.
Today I have made a scritp to run for uninstall folder in
registry, but only folder name provided.

Now I would like to solve how could it provide more
details in each software folder as I posted my request
before. It could includes more details rather than
displayname and displayvision only.

Thanks a million.


const HKEY_LOCAL_MACHINE = &H80000002
strComputer = "."
Set StdOut = WScript.StdOut
Set oReg=GetObject("winmgmts:
{impersonationLevel=impersonate}!\\" &_
strComputer & "\root\default:StdRegProv")
strKeyPath
= "SOFTWARE\Microsoft\Windows\Currentversion\uninstall"
oReg.EnumKey HKEY_LOCAL_MACHINE, strKeyPath, arrSubKeys
For Each subkey In arrSubKeys
StdOut.WriteLine subkey
Next

For those interested this should be part of thread

From: "HKReader HKfai" <[email protected]>
Subject: Software Uninstall Record
Date: Sat, 2 Aug 2003 05:37:56 -0700
Message-ID: <[email protected]>

Sorry "HKReader HKfai" I don't do VBS (et.al).

If I had the need to do what (I think) you want, I'd arrange to
export the key (and contents) to a .reg (text) file using perhaps
regedit.exe or reg.exe. Then attack the problem with a decent
scripting language to parse and reformat the output.... I would use
REXX (lang. of choice) but other scripting should work as well.

Perhaps a newsgroup for VBS or WinMgmt would be more helpful?

I am not clear on what your final goal is though. It seems that much
of the most useful information is available from 3rd-party utilities
(as mentioned in other thread). Or even just a export of that key to
a text (.reg) file? ...

Perhaps I don't understand what you want as the final result.
 
M

Mark V

HKReader HKfai wrote in
[ ]

And BTW it helps greatly to reply in-thread. Continually starting new
message threads makes it very difficult.... This "threaded
discussion" model is central to Usenet. FYI
 
M

Mark V

HKReader HKfai wrote in
[ ]

And BTW it helps greatly to reply in-thread. Continually starting new
message threads makes it very difficult.... This "threaded
discussion" model is central to Usenet. FYI
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top