Create a Custom Detection Script for EndNote (PowerShell)

Microsoft Endpoint Manager Configuration Manager (MEMCM / SCCM) and Microsoft Intune use Detection Rules to determine the presence of Applications & Win32 Apps. The detection rules ensure that application installations only begin to run if the application is not already installed on the device. This article will serve as an informative guide and give you a clear understanding of how to create an updated custom detection script for each new version of EndNote using PowerShell.

How to Create a Custom Detection Script for EndNote

EndNote (File Detection Method)

## Check for EndNote (File Detection Method)
$EndNoteExe = (Get-ChildItem -Path "C:\Program Files\EndNote*\EndNote.exe","C:\Program Files (x86)\EndNote*\EndNote.exe" -ErrorAction SilentlyContinue)
$EndNoteExe.FullName
$EndNotePath = $($EndNoteExe.FullName).Replace("C:\Program Files\","").Replace("C:\Program Files (x86)\","")
$FileVersion = (Get-Item -Path "$($EndNoteExe.FullName)" -ErrorAction SilentlyContinue).VersionInfo.FileVersionRaw

## Create Text File with EndNote Detection Method
$FilePath = "C:\Windows\Temp\EndNote_Detection_Method.txt"
New-Item -Path "$FilePath" -Force
Set-Content -Path "$FilePath" -Value "If([String](Get-Item -Path `"`$Env:ProgramFiles\$EndNotePath`",`"`${Env:ProgramFiles(x86)}\$EndNotePath`" -ErrorAction SilentlyContinue).VersionInfo.FileVersionRaw -ge `"$FileVersion`"){"
Add-Content -Path "$FilePath" -Value "Write-Host `"Installed`""
Add-Content -Path "$FilePath" -Value "}"
Invoke-Item $FilePath
  • Click Run Script (F5)
  • A text file will open with the EndNote Detection Method script required to detect the current version of EndNote that is installed on the device you are running the script from.

Example:

If([String](Get-Item -Path "$Env:ProgramFiles\EndNote 20\EndNote.exe","${Env:ProgramFiles(x86)}\EndNote 20\EndNote.exe" -ErrorAction SilentlyContinue).VersionInfo.FileVersionRaw -ge "20.4.0.16272"){
Write-Host "Installed"
}

EndNote (Registry Detection Method)

## Check for EndNote (Registry Detection Method)
$EndNote = Get-ChildItem -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall","HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall" | Get-ItemProperty | Where-Object {$_.DisplayName -like 'EndNote*' } | Select-Object -Property DisplayName, DisplayVersion, PSChildName
$EndNote.DisplayVersion
$EndNote.PSChildName

## Create Text File with EndNote Registry Detection Method
$FilePath = "C:\Windows\Temp\EndNote_Detection_Method.txt"
New-Item -Path "$FilePath" -Force
Set-Content -Path "$FilePath" -Value "If([Version](Get-ItemPropertyValue -Path 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$($EndNote.PSChildName)','HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\$($EndNote.PSChildName)' -Name DisplayVersion -ea SilentlyContinue) -ge '$($EndNote.DisplayVersion)') {"
Add-Content -Path "$FilePath" -Value "Write-Host `"Installed`""
Add-Content -Path "$FilePath" -Value "}"
Invoke-Item $FilePath
  • Click Run Script (F5)
  • A text file will open with the EndNote Detection Method script required to detect the current version of EndNote that is installed on the device you are running the script from.

Example:

If([Version](Get-ItemPropertyValue -Path 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{86B3F2D6-AC2B-0020-8AE1-F2F77F781B0C}','HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\{86B3F2D6-AC2B-0020-8AE1-F2F77F781B0C}' -Name DisplayVersion -ea SilentlyContinue) -ge '20.4.0.16272') {
Write-Host "Installed"
}

Always make sure to test everything in a development environment prior to implementing anything into production. The information in this article is provided “As Is” without warranty of any kind.