This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Using _TransformView to view the registry Table
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jan 29, 2013
09:05 PM
Using _TransformView to view the registry Table
How can I view the Registry Table of a transform? I can only get a couple of columns to show using:
Set oInstaller = CreateObject("WindowsInstaller.Installer")
Set Database = oInstaller.OpenDatabase(, 0)
Database.ApplyTransform, 256
Set oView = Database.OpenView("SELECT * FROM `_TransformView` WHERE `Table`='Registry' AND `Column`='Key'")
or
Set oView = Database.OpenView("SELECT `Row`,`Data` FROM `_TransformView` WHERE `Table`='Registry' AND `Column`='Key'")
oView.Execute
Do
Set rec = oView.Fetch
If rec Is Nothing Then Exit Do
msgbox rec.StringData(0) & vbcrlf & rec.StringData(1) & vbcrlf & rec.StringData(2) & vbcrlf &_
rec.StringData(3) & vbcrlf & rec.StringData(4) & vbcrlf &rec.StringData(5)
Loop
I need to retrieve the Registry, Root, Key, Name, and Value from the Registry Table
Set oInstaller = CreateObject("WindowsInstaller.Installer")
Set Database = oInstaller.OpenDatabase(
Database.ApplyTransform
Set oView = Database.OpenView("SELECT * FROM `_TransformView` WHERE `Table`='Registry' AND `Column`='Key'")
or
Set oView = Database.OpenView("SELECT `Row`,`Data` FROM `_TransformView` WHERE `Table`='Registry' AND `Column`='Key'")
oView.Execute
Do
Set rec = oView.Fetch
If rec Is Nothing Then Exit Do
msgbox rec.StringData(0) & vbcrlf & rec.StringData(1) & vbcrlf & rec.StringData(2) & vbcrlf &_
rec.StringData(3) & vbcrlf & rec.StringData(4) & vbcrlf &rec.StringData(5)
Loop
I need to retrieve the Registry, Root, Key, Name, and Value from the Registry Table
2 Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jan 30, 2013
01:08 PM
Figured out a way; but I would welcome any simpler way to grab the Registry Table info
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jan 30, 2013
11:46 PM
Hello.
Did you use Orca?
Archive: How to Edit an MST File with Orca
http://support.citrix.com/article/CTX105542
As far as I know, this is the simplest way to do so.
Did you use Orca?
Archive: How to Edit an MST File with Orca
http://support.citrix.com/article/CTX105542
As far as I know, this is the simplest way to do so.
