14 lines
343 B
PowerShell
14 lines
343 B
PowerShell
# Script by Timur@0x01337.com
|
|
# Date: 2023-11-24
|
|
# Retrieve a list of installed software
|
|
$softwareList = Get-WmiObject -Class Win32_Product | Select-Object Name, Version, Vendor
|
|
|
|
# Export the list to a CSV file
|
|
$softwareList | Export-Csv -Path "C:\Users\toezdemir\Desktop\SoftwareList.csv" -NoTypeInformation -Delimiter ";"
|
|
|
|
|
|
|
|
|
|
|
|
|