Create a Custom Detection Script for Autodesk DWG TrueView 2022 (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 Autodesk DWG TrueView 2022 using PowerShell.

How to Create a Custom Detection Script for Autodesk DWG TrueView 2022

Autodesk DWG TrueView 2022 (File Detection Method)

## Check for Autodesk DWG TrueView 2022 (File Detection Method)
$DWGTrueViewExe = (Get-ChildItem -Path "C:\Program Files\Autodesk\DWG TrueView 2022*\dwgviewr.exe" -ErrorAction SilentlyContinue)
$DWGTrueViewExe.FullName
$DWGTrueViewPath = $($DWGTrueViewExe.FullName).Replace("C:\Program Files\","")
$ProductVersion = (Get-Item -Path "$($DWGTrueViewExe.FullName)" -ErrorAction SilentlyContinue).VersionInfo.ProductVersion

## Create Text File with Autodesk DWG TrueView 2022 File Detection Method
$FilePath = "C:\Windows\Temp\Autodesk_DWG_TrueView_2022_Detection_Method.txt"
New-Item -Path "$FilePath" -Force
Set-Content -Path "$FilePath" -Value "If([String](Get-Item -Path `"`$Env:ProgramFiles\$DWGTrueViewPath`" -ErrorAction SilentlyContinue).VersionInfo.ProductVersion -ge `"$ProductVersion`"){"
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 Autodesk DWG TrueView 2022 Detection Method script required to detect the current version of Autodesk DWG TrueView 2022 that is installed on the device you are running the script from.

Example:

If([String](Get-Item -Path "$Env:ProgramFiles\Autodesk\DWG TrueView 2022 - English\dwgviewr.exe" -ErrorAction SilentlyContinue).VersionInfo.ProductVersion -ge "R24.1.173.0.0"){
Write-Host "Installed"
Exit 0
}
else {
Exit 1
}

Autodesk DWG TrueView 2022 (Registry Detection Method)

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

## Create Text File with Autodesk DWG TrueView 2022 Registry Detection Method
$FilePath = "C:\Windows\Temp\Autodesk_DWG_TrueView_2022_Detection_Method.txt"
New-Item -Path "$FilePath" -Force
Set-Content -Path "$FilePath" -Value "If([Version](Get-ItemPropertyValue -Path 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$($DWGTrueView.PSChildName)' -Name DisplayVersion -ea SilentlyContinue) -ge '$($DWGTrueView.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 Autodesk DWG TrueView 2022 Detection Method script required to detect the current version of Autodesk DWG TrueView 2022 that is installed on the device you are running the script from.

Example:

If([Version](Get-ItemPropertyValue -Path 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{E196DF21-D474-3517-A64E-A081C26AF3A8}' -Name DisplayVersion -ea SilentlyContinue) -ge '24.1.173.0') {
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.