34
34
如果你使用的是 Windows Vista 或 Windows 7,而你又不想安装其他软件,你可以:
wmic
(回车) product get name
(回车)
3.一个PowerShell脚本来列出它们:
$loc = Get-ChildItem HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall
$names = $loc |foreach-object {Get-ItemProperty $_.PsPath}
foreach ($name in $names)
{
Write-Host $name.Displayname
}
并不完全是命令行,但我个人为此目的使用了CCleaner的卸载工具,你可以将已安装的软件列表导出为文本文件:
要添加到MicTech的解决方案 - 使用wmic
并将安装的软件列表抓取到文件中:
打开一个命令行窗口(Windows+R,CMD.EXE)
wmic /OUTPUT:my_software.txt product get name
Sysinternals psinfo.exe提供了所有建议中最完整的信息,它可以在任何Windows PC上从命令行直接从高架的CMD提示符上运行,无需永久下载:
\live.sysinternals.com\tools\psinfo.exe -s > %userprofile%\Desktop\_psinfo.txt
当你运行这个程序时,你会得到一个安全提示,并在机器上第一次运行时得到一个EULA提示。会有一个文本文件保存到当前桌面上。
EULA可以这样自动接受:
\live.sysinternals.com\tools\psinfo.exe -s /accepteula > %userprofile%\Desktop\_psinfo.txt
通过Windows注册表安装的C#程序中的编码版本:
using Microsoft.Win32;
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
namespace SoftwareInventory
{
class Program
{
static void Main(string[] args)
{
//!!!!! Must be launched with a domain administrator user!!!!!
Console.ForegroundColor = ConsoleColor.Green;
StringBuilder sbOutFile = new StringBuilder();
Console.WriteLine("DisplayName;IdentifyingNumber");
sbOutFile.AppendLine("Machine;DisplayName;Version");
// Retrieve machine name from the file :File_In/collectionMachines.txt
//string[] lines = new string[] { "NameMachine" };
string[] lines = File.ReadAllLines(@"File_In/collectionMachines.txt");
foreach (var machine in lines)
{
// Retrieve the list of installed programs for each extrapolated machine name
var registry_key = @"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall";
using (Microsoft.Win32.RegistryKey key = RegistryKey.OpenRemoteBaseKey(RegistryHive.LocalMachine, machine).OpenSubKey(registry_key))
{
foreach (string subkey_name in key.GetSubKeyNames())
{
using (RegistryKey subkey = key.OpenSubKey(subkey_name))
{
//Console.WriteLine(subkey.GetValue("DisplayName"));
//Console.WriteLine(subkey.GetValue("IdentifyingNumber"));
if (subkey.GetValue("DisplayName") != null)
{
Console.WriteLine(string.Format("{0};{1};{2}", machine, subkey.GetValue("DisplayName"), subkey.GetValue("Version")));
sbOutFile.AppendLine(string.Format("{0};{1};{2}", machine, subkey.GetValue("DisplayName"), subkey.GetValue("Version")));
}
}
}
}
}
// CSV file creation
var fileOutName = string.Format(@"File_Out\{0}_{1}.csv", "Software_Inventory", DateTime.Now.ToString("yyyy_MM_dd_HH_mmssfff"));
using (var file = new System.IO.StreamWriter(fileOutName))
{
file.WriteLine(sbOutFile.ToString());
}
// Press Enter to continue
Console.WriteLine("Press enter to continue!");
Console.ReadLine();
}
}
}
有一个名为Showmysoft的便携式应用程序。它将显示本地机器和远程机器上安装的软件,并可以导出为PDF和CSV。不需要安装。从 http://spidersoft.in/showmysoft/ 中下载。
最低系统要求是Microsoft .NET Framework 2.0。