Create a Custom Detection Script for Arduino (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 Arduino using PowerShell.

How to Create a Custom Detection Script for Arduino

Arduino (File Detection Method)

## Check for Arduino (File Detection Method)
$ArduinoExe = (Get-ChildItem -Path "C:\Program Files\Arduino\arduino.exe","C:\Program Files (x86)\Arduino\arduino.exe" -ErrorAction SilentlyContinue)
$ArduinoExe.FullName
$ArduinoPath = $($ArduinoExe.FullName).Replace("C:\Program Files\","").Replace("C:\Program Files (x86)\","")
$FileVersion = (Get-Item -Path "$($ArduinoExe.FullName)" -ErrorAction SilentlyContinue).VersionInfo.FileVersion

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

Example:

If([String](Get-Item -Path "$Env:ProgramFiles\Arduino\arduino.exe","${Env:ProgramFiles(x86)}\Arduino\arduino.exe" -ErrorAction SilentlyContinue).VersionInfo.FileVersion -ge "1.8.19"){
Write-Host "Installed"
Exit 0
}
else {
Exit 1
}

Arduino (Registry Detection Method)

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

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

Example:

If([Version](Get-ItemPropertyValue -Path 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Arduino','HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Arduino' -Name DisplayVersion -ea SilentlyContinue) -ge '1.8.19') {
Write-Host "Installed"
Exit 0
}
else {
Exit 1
}

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.