Community
User Guides
Support
Community
Help Forums
English Forum
General
About our Community
General Discussion
News and Feedback
Products
F-Secure SAFE
F-Secure FREEDOME
F-Secure KEY
F-Secure SENSE Router
F-Secure ID PROTECTION
Other products
Beta programs
Feature Requests
Finnish Forum (Tukifoorumi)
Tuotteet Kotiin
F-Secure SAFE
F-Secure FREEDOME
F-Secure KEY
F-Secure SENSE Router
F-Secure ID PROTECTION
Muut tietoturvatuotteet
Support Articles
Language
English
Suomi
Deutsch
Français
日本語
Svenska
Dansk
Italiano
Nederlands
Norsk
Polski
中文 (繁體)
Products & Services
F-Secure TOTAL
F-Secure SAFE / Internet Security / Anti-Virus
F-Secure FREEDOME
F-Secure KEY
F-Secure SENSE Router
F-Secure ID PROTECTION
Other products
Common topics
User Guides
Support
Login
|
Register
Other than using the MSI product code, how to create the detection method in SCCM to detect the existing installation of F-Secure Client Security? - F-Secure Community
<main> <article class="userContent"> <h3 data-version="5" data-article="000034313" data-id="issue">Issue:</h3> <p>MSI product code for F-Secure Client Security is generated each time differently when the installation package is created.<br><br>This is troublesome as I need to include a number of MSI product codes in the SCCM's detection method, to detect the existing installation of F-Secure Client Security.<br><br>Other than using the MSI product code, what's your recommendation to create the detection method in SCCM?</p> <h3 data-id="resolution">Resolution:</h3> <p>You can use the custom made type of detection method, based on the product registry. We recommend to use the following detection methods:<br><br>1. Using the product registry detection, whereby the product version is being kept at the following registry:<br><br>HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\F-Secure\NS\default\OneClient\Version(REG_SZ)<br><br>For example, to detect the existing installation of F-Secure Client Security 15.20 installed on the device<br><br><img alt="User-added image" height="404" src="https://us.v-cdn.net/6032052/uploads/9GQZXVF47230/kcs-0em67000004y2wq.jpg" width="500" class="embedImage-img importedEmbed-img"></img><br><img alt="User-added image" height="426" src="https://us.v-cdn.net/6032052/uploads/RSXSNDPL8O4K/kcs-0em67000004y2x0.jpg" width="500" class="embedImage-img importedEmbed-img"></img><br><br><br>2. Using script, i.e. VBScript, to check version from the registry branch mentioned above:<br><br>For example, you can use the following scripting to detect the existing installation of F-Secure Client Security 15.20 installed on the device<br><br>ON ERROR RESUME NEXT<br><br>Set WSHShell = CreateObject("WScript.Shell")<br>strKey = "HKLM\SOFTWARE\F-Secure\NS\default\OneClient"<br>strValue = WshShell.RegRead (str_key)<br><br>If InStr(1, str_value, "15.20") then<br> wscript.echo "Success"<br>end if<br><br><img alt="User-added image" height="445" src="https://us.v-cdn.net/6032052/uploads/I8AY70UMNQAB/kcs-0em67000004y2x5.jpg" width="500" class="embedImage-img importedEmbed-img"></img><br><img alt="User-added image" height="563" src="https://us.v-cdn.net/6032052/uploads/HCAXV6J8NMU9/kcs-0em67000004y2y6.jpg" width="500" class="embedImage-img importedEmbed-img"></img><br> </p> <p>Article no: 000034313</p> </article> </main>