Deploying the bigfix console

(imported topic written by ygarti91)

hi everyone

i want to deploy the BigFix console to some computers

i think that i had a tasks that i got from the BigFix site to install the console

but now when i search it i can’t find it so if some one can upload the bes ile so i can do an automatic install I’ll be glad

thank you for your help

(imported comment written by amagewick91)

Maybe you aren’t used to writing scripts yet, I have no clue, but why don’t you write one for yourself?

My appologies if this came across incorrectly.

(imported comment written by ygarti91)

i know i can make one i am asking if someone already make one so i can use it.

its kind of weird that a program that suppose to deploy programs doesn’t have a deploy for her own console

(imported comment written by SystemAdmin)

Just use the Software Distribution wizard on the Console install folder and add /S to the command line to make it install quietly.

(imported comment written by SystemAdmin)

Pushing out the console using a task with the /s command does work however it creates a default DSN entry to the BigFix server. I have my BES DB running on an external SQL server. Is there a way using /switches during the install to change the default DSN setup behaviour? In my example change it to an external SQL server??

(imported comment written by SystemAdmin)

Quick follow-up, I’d also like to be able to set the DSN for windows authentication.

(imported comment written by SystemAdmin)

This is the command I use to install the BES Console and set the ODBC connection. If I remember correctly this did not work on Windows 7 64bit because you need to change the key in the Syswow32 folder of the registry. You can create some session relevance if that is important to you. We have very few 64bit clients.

//Install

waithidden __Download\setup.exe /s /v"REBOOT=ReallySuppress"

//Add ODBC Connection

delete __appendfile

appendfile Windows Registry Editor Version 5.00

appendfile

http://HKEY_LOCAL_MACHINE\SOFTWARE\ODBC\ODBC.INI\bes_EnterpriseServer

appendfile “Driver”=“c:\Windows\system32\sqlncli.dll”

appendfile “Database”=“BFEnterprise”

appendfile “LastUser”=“SYSTEM”

appendfile “Server”=“Server.doman.name\Instanance”

delete odbc.reg

move __appendfile odbc.reg

wait regedit.exe -s odbc.reg

regset "

http://HKEY_LOCAL_MACHINE\SOFTWARE\ODBC\ODBC.INI\ODBC Data Sources

" “bes_EnterpriseServer”=“SQL Native Client”

(imported comment written by SystemAdmin)

ahh good thinking!! Thanks! Unfortunately I have to do both x32 & x64 installs. I just did an

if(x64 of operating system)

delete __createfile

etc…

end if

if(not x64 of operating system)

delete __createfile

etc…

end if

I guess if(exists x64 registry) would work also for the relevance.

Also used the x32/x64 setup to install some contextmenuextensions under the HKEY_CURRENT_USER!!