Upload files to "Microsoft"
This commit is contained in:
parent
1fa10ab036
commit
6a099d1ce8
13
Microsoft/Export_Software_installed.ps1
Normal file
13
Microsoft/Export_Software_installed.ps1
Normal file
|
|
@ -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 ";"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Loading…
Reference in a new issue