PowerShell & Co-Pilot : Export as list of all installed applications on any server | Live demo
Автор: Raymond Roshan
Загружено: 2025-11-04
Просмотров: 16
In this video we have exported all installed application on your device using Powershell and Copilot.
Here is the script I used: You can copy below script and run on your servers.
Get current user's desktop path
$desktopPath = [Environment]::GetFolderPath("Desktop")
$outputFile = Join-Path $desktopPath "InstalledApplications.txt"
Retrieve installed applications from registry
$registryPaths = @(
"HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*",
"HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*"
)
$appList = foreach ($path in $registryPaths) {
Get-ItemProperty $path -ErrorAction SilentlyContinue | Where-Object { $_.DisplayName } | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate
}
Export to text file
$appList | Format-Table -AutoSize | Out-String | Set-Content -Path $outputFile
Write-Host "Installed applications list saved to: $outputFile"
Links
Connect with me:
Instagram: instagram.com/raymond_roshan
Facebook: facebook.com/profile.php?id=61561439954717
X: x.com/RAYMONDROSHAN
Whatsapp: whatsapp.com/channel/0029Va8nvQLI1rchgjES8n3C
Copilot + PowerShell: Add Bulk AD Users in One Go! Import users list from excel/txt
Video link
• Copilot + PowerShell: Add Bulk AD Users in...
Add multiple computer objects in Active directory using simple powershell script
Video link
• Add multiple computer objects in Active di...
Create multiple users in AD using Powershell script | Copy the Script from description
Video link
• Create multiple users in AD using Powershe...
Доступные форматы для скачивания:
Скачать видео mp4
-
Информация по загрузке: