1
0
1
0
This PowerShell script detects the presence of Greenshot software on the system and returns version information. Designed for enterprise deployment and software inventory management in MSP environments. Supports both 32-bit and 64-bit installations.
SearchPaths Array of path patterns where Greenshot executable should be located. Default: 64-bit and 32-bit Program Files directories
.OUTPUTS System.String Returns detection status and version information, or error messages.
PS> .\Detect-Greenshot.ps1Greenshot found - Version: 1.2.10.6 - Path: C:\Program Files\Greenshot\Greenshot.exePS> .\Detect-Greenshot.ps1Greenshot not foundFile Name : Detect-Greenshot.ps1 Author : ctrlaltnod.com Prerequisite : PowerShell 3.0 or higher Creation Date : September 16, 2025 Purpose/Change : Greenshot detection for MSP deployment workflows
This PowerShell script detects the presence of VLC Media Player software on the system for Microsoft Intune Win32 app deployment. Returns correct exit codes and STDOUT output for proper Intune detection logic. Supports both 32-bit and 64-bit installations.
SearchPaths Array of path patterns where VLC executable should be located. Default: 64-bit and 32-bit Program Files directories
.OUTPUTS System.String Returns detection status ONLY when application is found (for Intune STDOUT requirement)
PS> .\Detect-VLCMediaPlayer-Intune.ps1VLC Media Player found - Version: 3.0.18.0 (64-bit)(Exit code 0 = App detected)PS> .\Detect-VLCMediaPlayer-Intune.ps1(No output, Exit code 1 = App not detected)File Name : Detect-VLCMediaPlayer-Intune.ps1 Author : ctrlaltnod.com Prerequisite : PowerShell 3.0 or higher Creation Date : September 16, 2025 Purpose/Change : Intune Win32 app detection with proper STDOUT handling Context : Runs in SYSTEM context via Intune Management Extension
This PowerShell script detects the presence of Autodesk DWG TrueView 2026 software on the system and returns version information. Designed for enterprise deployment and software inventory management in MSP environments.
SearchPath The path pattern where DWG TrueView 2026 executable should be located. Default: "C:\Program Files\Autodesk\DWG TrueView 2026*\dwgviewr.exe"
.OUTPUTS System.String Returns detection status and version information, or error messages.
PS> .\Detect-DWGTrueView2026.ps1Autodesk DWG TrueView 2026 found - Version: 24.1.51.0PS> .\Detect-DWGTrueView2026.ps1Autodesk DWG TrueView 2026 not foundFile Name : Detect-DWGTrueView2026.ps1 Author : ctrlaltnod.com Prerequisite : PowerShell 3.0 or higher Creation Date : September 16, 2025 Purpose/Change : Software detection for MSP deployment workflows