<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.sophos.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>How do I deploy Sophos Endpoint with SCCM 2012</title><link>https://community.sophos.com/on-premise-endpoint/f/sophos-endpoint-software/92458/how-do-i-deploy-sophos-endpoint-with-sccm-2012</link><description>Hi Guys, 
 
 I need to create an SCCM package for Sophos Endpoint for use with Desktops and Servers - can someone please point me in the direction of a guide as i understand there is no .msi for Sophos? 
 
 Thanks</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: How do I deploy Sophos Endpoint with SCCM 2012</title><link>https://community.sophos.com/thread/340759?ContentTypeID=1</link><pubDate>Mon, 17 Jul 2017 13:55:01 GMT</pubDate><guid isPermaLink="false">4be5eb7d-caa4-4ff5-8e60-8f9463545a35:3c92fa40-5bbc-4d6d-b193-699770dac772</guid><dc:creator>ScottHolm</dc:creator><description>&lt;p&gt;Great info above.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;In SCCM I would use the above to install the latest on all your devices if their already deployed. If your installing from a task sequence during a new build, in theory if you had update points around your network to assist with locations with slow network bandwidth, I would use the above script.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;If your a smaller company with only one update point, I would create a custom installer using the Deployment Packager. Then in SCCM create &amp;quot;Package&amp;quot; with the EXE it created and run in your task sequence. I do this and the smaller deltas, I let the clients update on their own and larger changes I update the EXE and refresh the package.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Also to note in the task sequence, will set the reboot flag, so you either need to reboot or clear that flag.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How do I deploy Sophos Endpoint with SCCM 2012</title><link>https://community.sophos.com/thread/337955?ContentTypeID=1</link><pubDate>Fri, 23 Jun 2017 11:19:22 GMT</pubDate><guid isPermaLink="false">4be5eb7d-caa4-4ff5-8e60-8f9463545a35:77d366aa-4553-4b07-ac6b-485f6ee646a4</guid><dc:creator>BluMoon</dc:creator><description>&lt;p&gt;I spent a lot of time getting this process to work&amp;nbsp;right, especially when it came to installing the Outlook Add-in. I&amp;#39;m hoping this post helps others.&lt;/p&gt;
&lt;p&gt;What I found that works best for me&amp;nbsp;is to create a script Application and have it run the installer using the required variables. As for the Sophos Outlook Add-in, I created a batch file that I run as the install program. If you&amp;#39;re on CB you can use either the Application or Package method as the installer - if you&amp;#39;re on an older version, I&amp;#39;d stick with a Package.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;To create the Sophos Endpoint Application/Package...&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Copy the original installer files from: \\YourServer\SophosUpdate\CIDs\S000\SAVSCFXP\&lt;/li&gt;
&lt;li&gt;Put&amp;nbsp;these files in a folder in your preferred software share&lt;/li&gt;
&lt;li&gt;Create the Application as a script installer and &amp;nbsp;use the following as the &amp;quot;Installation Program&amp;quot; (This is all on one line):&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;setup.exe -mng yes -crt R -updp \\YourServer\share\Sophos\10.7\SAVSCFXP -ouser YourObfuscatedUsername&amp;nbsp;-opwd YourObfuscatedPassword -s -mngcfg \\YourSCCMServer\ConfigFiles\Folder\&lt;/span&gt;&lt;br /&gt;(Command line parameters used by setup.exe: &lt;a href="/kb/en-us/12570"&gt;https://community.sophos.com/kb/en-us/12570&lt;/a&gt;)&lt;br /&gt;(Obfuscating the username and password:&amp;nbsp;&lt;a href="/kb/en-us/13094"&gt;https://community.sophos.com/kb/en-us/13094&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;As a Detection Method, I used a registry check from a PC that had it installed manually to look up the Product Version and make sure it was &amp;quot;equal&amp;quot;:&lt;br /&gt;HLM\SOFTWARE\WOW6432Node\Sophos\AutoUpdate&lt;/li&gt;
&lt;/ol&gt;
&lt;hr /&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;To create the Sophos Outlook Add-in&amp;nbsp;Application/Package...&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;As I mentioned above, I created a batch file to call up everything I needed. One particularly irritating problem that I ran into is that the MSI for the add-in does not include the required Visual Studio Tools for Office Runtime (VSTO) the add-in needs. It is included in the exe but there is no way to run it silently because&amp;nbsp;it&amp;#39;s installer forces the user to read the EULA in order to proceed. I tried extracting the exe with 7zip but I didn&amp;#39;t find VSTO so I just downloaded it directly from Microsoft (&lt;a href="https://www.microsoft.com/en-us/download/details.aspx?id=48217"&gt;https://www.microsoft.com/en-us/download/details.aspx?id=48217&lt;/a&gt;). I have the batch file&amp;nbsp;installing it first then the Sophos Outlook Add-in MSI will install correctly. Using my Googlefoo, I found a command switch to install VSTO&amp;nbsp;silently because Microsoft doesn&amp;#39;t publish it! We also wanted to make some changes to the way the add-in behaves in Outlook. I found that the easiest way to get this accomplished was to do it through a reg file containing the changes we needed (these are well documented by Sophos in the Deployment Guide &lt;a href="http://esa.sophos.com/docs/esa/pdf/OutlookAddIn.pdf"&gt;http://esa.sophos.com/docs/esa/pdf/OutlookAddIn.pdf)&lt;/a&gt;. I used a great little program called Registry Converter (&lt;a href="http://www.sordum.org/8478/reg-converter-v1-0/"&gt;http://www.sordum.org/8478/reg-converter-v1-0/&lt;/a&gt;)&amp;nbsp; to change the reg files into .vbs files that I could kick off from the batch.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I copied all of the files I mentioned above to my SCCM software share. I then created the batch file in that same folder and named it &amp;quot;install.bat&amp;quot;. Then I created a script installer in SCCM that uses install.bat as the installation program. Obviously, you can customize the batch file to your needs, just be sure that you don&amp;#39;t alter the first line. That string makes the sequence run from the directory that SCCM&amp;nbsp;client caches that contains all the required files.&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:inherit;"&gt;Install.bat file:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;PUSHD %~dp0&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;REM Install Required Runtime -&amp;nbsp;/afterreboot is undocumented and forces it to skip the EULA&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;&amp;quot;vstor_redist.exe&amp;quot; /afterreboot /q&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;REM Install Sophos Outlook&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;msiexec /i &amp;quot;SophosOutlookAddInSetup.msi&amp;quot; /q&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;REM Uninstall command if you need it: msiexec /x {34C40A8A-6D85-4519-9F89-FB14B1D1EB03} /q&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;REM Run registry settings script&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;&amp;quot;SophosRegSettings.vbs&amp;quot;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How do I deploy Sophos Endpoint with SCCM 2012</title><link>https://community.sophos.com/thread/334675?ContentTypeID=1</link><pubDate>Fri, 26 May 2017 10:04:47 GMT</pubDate><guid isPermaLink="false">4be5eb7d-caa4-4ff5-8e60-8f9463545a35:eb6a0e1b-497e-4e29-aea4-0817807355fb</guid><dc:creator>QC</dc:creator><description>&lt;p&gt;Hello &lt;span class="field-item-name label"&gt;nathan jones&lt;/span&gt;,&lt;/p&gt;
&lt;p&gt;have you seen the &lt;a href="/kb/en-us/12457" target="_blank"&gt;article for SCCM 2007&lt;/a&gt;? We&amp;#39;re not using SCCM so I can&amp;#39;t say though if there are significant differences with 2012. &lt;br /&gt;In principle the Sophos install is done by &lt;a href="/kb/en-us/12570" target="_blank"&gt;setup.exe&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Christian&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>