Dll is Not Registering propoerly

C

CrimeMaster

Hi,
I have make a toolbar that integrates with IE and windows explorer.This
toolbar is Properly register in Win XP and 2000 But when i m trying to
register it with Windows 2003 its not getting registered,
could any one Help me regarding this, i have write the following script
in to the RGS file of the COM Dll

HKCR
{
ToolBand.ToolBandObj.1 = s 'PDF Sign&&Seal Bar'
{

CLSID = s '{8865BBD8-3DDD-43ae-9AC6-44288EA0FB9C}'
}
ToolBand.ToolBandObj = s 'PDF Sign&&Seal Bar'
{
CLSID = s '{8865BBD8-3DDD-43ae-9AC6-44288EA0FB9C}'
CurVer = s 'ToolBand.ToolBandObj.1'
}
NoRemove CLSID
{
ForceRemove {8865BBD8-3DDD-43ae-9AC6-44288EA0FB9C} = s 'PDF
Sign&&Seal Bar'
{
ProgID = s 'ToolBand.ToolBandObj.1'
VersionIndependentProgID = s 'ToolBand.ToolBandObj'
ForceRemove 'Programmable'
InprocServer32 = s '%MODULE%'
{
val ThreadingModel = s 'Apartment'
}
'TypeLib' = s '{040A48DC-073C-4560-B275-137147F3A888}'
}
}
}

HKLM {
NoRemove SOFTWARE {
NoRemove Microsoft {
NoRemove Windows {
NoRemove CurrentVersion {
NoRemove Explorer {
NoRemove 'Browser Helper Objects' {
{DDC5C9EA-6B17-41E8-80B9-95588B07E1B8}
}
}
}
}
}
}
}
 
S

SvenC

Hi,

CrimeMaster said:
Hi,
I have make a toolbar that integrates with IE and windows explorer.This
toolbar is Properly register in Win XP and 2000 But when i m trying to
register it with Windows 2003 its not getting registered,
could any one Help me regarding this, i have write the following script
in to the RGS file of the COM Dll

HKCR
{
ToolBand.ToolBandObj.1 = s 'PDF Sign&&Seal Bar'
{

CLSID = s '{8865BBD8-3DDD-43ae-9AC6-44288EA0FB9C}'
}
ToolBand.ToolBandObj = s 'PDF Sign&&Seal Bar'
{
CLSID = s '{8865BBD8-3DDD-43ae-9AC6-44288EA0FB9C}'
CurVer = s 'ToolBand.ToolBandObj.1'
}
NoRemove CLSID
{
ForceRemove {8865BBD8-3DDD-43ae-9AC6-44288EA0FB9C} = s 'PDF
Sign&&Seal Bar'
{
ProgID = s 'ToolBand.ToolBandObj.1'
VersionIndependentProgID = s 'ToolBand.ToolBandObj'
ForceRemove 'Programmable'
InprocServer32 = s '%MODULE%'
{
val ThreadingModel = s 'Apartment'
}
'TypeLib' = s '{040A48DC-073C-4560-B275-137147F3A888}'
}
}
}

HKLM {
NoRemove SOFTWARE {
NoRemove Microsoft {
NoRemove Windows {
NoRemove CurrentVersion {
NoRemove Explorer {
NoRemove 'Browser Helper Objects' {
{DDC5C9EA-6B17-41E8-80B9-95588B07E1B8}
}
}
}
}
}
}
}

Has the logged on user which tries to register the component write access to
the above registry key? HKLM is writable to Admins and PowerUsers only.
Do you get an error code upon registration? Mayby 0x80070005? That would
indicate "access denied".
 
Top