PowerShell – Detect AzureAD Device or Azure VDI
Building upon the previous post, let’s extend our detection capability to include Azure VDI. Code.ps1 # MrNetTek # eddiejackson.net # 9/11/2024 # free for public use # free to claim as your own # Function to detect if FSLogix is installed function Test-FSLogix { param ( [string]$Path = “C:\Program Files\FSLogix” ) return Test-Path $Path Read More …