Active Directory
A set of directory-based technologies included in Windows Server.
6,919 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello,
I want to extract data from productive AD. Using Powershell. I need a list of applications installed on client machines in our domain. Is there a script for this?
Hi @Uhlár Dániel
If you have a admin machine with WinrM flow opened with target machine you can use the following command :
Invoke-Command -ComputerName TargetComputerFQDN -ScriptBlock {Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* | select DisplayName, Publisher, InstallDate }
Please don't forget to mark helpful answer as accepted