Extract client machine data using powershell.

Uhlár Dániel 0 Reputation points
2023-02-20T09:15:44.37+00:00

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?

Active Directory
Active Directory
A set of directory-based technologies included in Windows Server.
6,919 questions
Windows Server PowerShell
Windows Server PowerShell
Windows Server: A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.PowerShell: A family of Microsoft task automation and configuration management frameworks consisting of a command-line shell and associated scripting language.
5,628 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Thameur-BOURBITA 36,226 Reputation points
    2023-02-20T14:56:57.6233333+00:00

    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

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.