FSU Biology - Windows powershell commands

Department of Biological Science

at Florida State University

Windows powershell commands

List all software installed on system:

        Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* |  Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table –AutoSize
      


        Get-WmiObject -Class Win32_Product | Select-Object -Property Name
    


List processes:

        get-process