Questions tagged [rgs]
9 questions
12
votes
1 answer
how does the .RGS file works
In the .rgs file, there are some registry info, and I want to know how does the info in .rgs file added into regetry?
I have a project AAA and it will generate the file AAA.DLL, and there is a file xxx.rgs which contains the registry info, and the…

Carlos Liu
- 2,348
- 3
- 37
- 51
9
votes
1 answer
Is there a document on .rgs files syntax?
Resource scripts loaded from .rgs files are used with ATL CComModule::UpdateRegistryFromResource(). It's quite common to see samples of such files on the net but I've never seen a complete description on what constructs are allowed in .rgs files. Is…

sharptooth
- 167,383
- 100
- 513
- 979
9
votes
1 answer
Registration Free COM, Threading Models, MT.exe and *.RGS scripts
I have a registration free C++ COM component whose manifest I am generating with mt.exe using VS2010. Everything works except I cannot specify which threading model my classes use. I created a small repro project, whose generated manifest file…

Matt
- 253
- 3
- 9
9
votes
1 answer
What is the syntax of a comment in a .rgs file
For reasons which I won't go into I am auto-generating a load of .rgs files for a Visual Studio 2008 ATL project. I would like to be able to put a comment into each .rgs file indicating that it was auto-generated, and when, but I can't find out what…

Dave
- 3,429
- 2
- 26
- 29
2
votes
2 answers
windows installer for COM component
I have a C++ activex control that I need to make an installer for. It needs to drop the dll and make some registry keys.
I have about 6 .RGS files which I made for self-registration via regsvr32, which work.
To do an installer I am manually porting…

Dustin Getz
- 21,282
- 15
- 82
- 131
2
votes
2 answers
HP RGS Command Line options not working as expected
I have a HP RGS Receiver v7.1 installed on my desktop which initiates a remote Session to my RHEL based workstation running HP RGS sender deployed in a LAN. Now when launching the HP RGS Receiver it brings up a window asking for the host name or IP…

user398039
- 143
- 1
- 12
1
vote
1 answer
How do I specify binary data in a COM RGS file
I'm adding some custom data data to the registry during the registration of a COM object by adding it to the rgs file.
Adding a DWORD value (specified by = d '3' below) gets entered into the registry as expected.
For the binary/hex data however it…

John Sibly
- 22,782
- 7
- 63
- 80
1
vote
1 answer
How to fill ProgID after creation ATL COM object. ProgID importance
I'm trying to create com object using C++ ATL. In add ATL Simple Object wizard I forgot to fill ProgID field. Is it possible to add ProgID later? I found that it is located in *.rgs file. Is it safe to edit this file? If yes, how to deal with UI…

vico
- 17,051
- 45
- 159
- 315
0
votes
0 answers
Two COM Dlls with Different GUIDS, AppID and TypeLib but same name
I have two COM Dlls with same name and entries in .rgs files except the GUIDs (ie. CLSID, APPID, and TypeLibID. The idl file contains different GUIDs too.
Can both the components coexist ? I have Application A which uses the one COM component and…