windows 32 bit and 2010 office

Add-in Express™ Support Service
That's what is more important than anything else

windows 32 bit and 2010 office
 
Christoph M?ller




Posts: 26
Joined: 2010-07-07
hi
while deploying the application i am follwing

"Outlook Security Manager 2010 deployment: self-registration in a Visual Studio setup project, part 3"

and coping "CorFlags.exe" file and follwoing part 4 also..

it is working perfect in windows 32 bit office not 2010, and windows 64 bit and office 2010

but when i am trying to deploy in widows 32 bit and office 2010 it is trying to install secman64.dll not secman.dll


but it is working fine above mentioned machines


i am giving like this

OLBIT regkey=SOFTWARE\ Microsoft\Office\14.0\Outlook

Olver regkey=Outlook.Application\CurVer

secman.dll condition is
(OLVER <> "Outlook.Application.14") or ((OLVER="Outlook.Application.14") and (OLBIT = "x86"))


secman64.dll condition is
((OLVER = "Outlook.Application.14") and ((OLBIT = "") or (OLBIT = "x64")))


Please help me
Posted 22 Jul, 2010 01:40:42 Top
Andrei Smolin


Add-in Express team


Posts: 18830
Joined: 2006-05-11
Hi Christoph,

Do you have "Bitness" in the Value parameter of that condition as shown on User added an image?


Andrei Smolin
Add-in Express Team Leader
Posted 22 Jul, 2010 04:01:23 Top
Christoph M?ller




Posts: 26
Joined: 2010-07-07
Hi Thanks for your reply

yes it is value = bitness only..

where am i have done mistake??

pelase help me
Posted 22 Jul, 2010 04:06:09 Top
Andrei Smolin


Add-in Express team


Posts: 18830
Joined: 2006-05-11
bitness or Bitness?


Andrei Smolin
Add-in Express Team Leader
Posted 22 Jul, 2010 04:13:44 Top
Christoph M?ller




Posts: 26
Joined: 2010-07-07
"Bitness" only
Thanks
Posted 22 Jul, 2010 04:30:19 Top
Christoph M?ller




Posts: 26
Joined: 2010-07-07
if i give like this

secman.dll condition is
(OLBIT = "x86")


secman64.dll condition is
(OLBIT = "x64")

when i may get problem

is it ok
Thanks
Posted 22 Jul, 2010 05:38:16 Top
Andrei Smolin


Add-in Express team


Posts: 18830
Joined: 2006-05-11
Hi Christoph,

Please pay attention to step 4 at http://www.add-in-express.com/creating-addins-blog/2010/05/07/deployment-visual-studio-setup-projects/.


Andrei Smolin
Add-in Express Team Leader
Posted 22 Jul, 2010 05:52:35 Top
Christoph M?ller




Posts: 26
Joined: 2010-07-07
if i never use beta vesrion then can i use only on econdition???

Thanks
Posted 22 Jul, 2010 06:15:01 Top
Andrei Smolin


Add-in Express team


Posts: 18830
Joined: 2006-05-11
Hi Christoph,

If you don't expect to run this on Outlook 2010 Beta, use the following conditions:

secman.dll:
(OLVER <> "Outlook.Application.14") or ((OLVER="Outlook.Application.14") and (OLBIT = "x86"))

secman64.dll:
((OLVER = "Outlook.Application.14") and (OLBIT = "x64"))


Andrei Smolin
Add-in Express Team Leader
Posted 22 Jul, 2010 06:23:12 Top
Andrei Smolin


Add-in Express team


Posts: 18830
Joined: 2006-05-11
There's another variant:

secman.dll:
(OLBIT = "x86") or (OLBIT = "")
secman64.dll:
(OLBIT = "x64")


Andrei Smolin
Add-in Express Team Leader
Posted 22 Jul, 2010 06:24:48 Top