diff --git a/Microsoft/Export_Software_installed.ps1 b/Microsoft/Export_Software_installed.ps1 new file mode 100644 index 0000000..d326b50 --- /dev/null +++ b/Microsoft/Export_Software_installed.ps1 @@ -0,0 +1,13 @@ +# 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 ";" + + + + + +