Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

Created December 31, 2017 16:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/6dfa969174acf2d97dfda40c5190cc17 to your computer and use it in GitHub Desktop.
Save anonymous/6dfa969174acf2d97dfda40c5190cc17 to your computer and use it in GitHub Desktop.
another uuid collector
PS C:\WINDOWS\system32> Get-ChildItem "HKLM:SOFTWARE\Microsoft\Active Setup\Installed Components\" | ForEach-Object {
>> $root = $_.PsPath.split("\\")[-1];
>> $a=$_;[PSCustomObject]@{
>> uuid = $root;
>> Name = $a.GetValue("") ;
>> Vendor = $a.GetValue("ComponentID") ;
>> Version = $a.GetValue("Version") ;
>> }} | select uuid,name,vendor,version
uuid Name Vendor Version
---- ---- ------ -------
>{22d6f312-b0f6-11d0-94ab-0080c74c7e95} Microsoft Windows Media Player WMPACCESS 12,0,16299,15
{22d6f312-b0f6-11d0-94ab-0080c74c7e95} Microsoft Windows Media Player 12.0 12,0,10011,16384
{2C7339CF-2B09-4501-B3F3-F3508C9228ED} Themes Setup Theme Component 1,1,1,9
{3af36230-a269-11d1-b5bf-0000f8051515} Offline Browsing Pack MobilePk 11,15,16299,0
{44BBA855-CC51-11CF-AAFA-00AA00B6015F} DirectDrawEx DirectDrawEx 4,71,1113,0
{45ea75a0-a269-11d1-b5bf-0000f8051515} Internet Explorer Help HelpCont 11,15,16299,0
{4f645220-306d-11d2-995d-00c04f98bbc9} Microsoft Windows Script 5.6 MSVBScript 5,6,0,8833
{4FC4FAB8-DD2C-3F8B-B378-F6EF65C0EC05} .NET Framework .NETFramework 4,0,30319,0
{5fd399c0-a70a-11d1-9948-00c04f98bbc9} Internet Explorer Setup Tools GenSetup 11,15,16299,0
{630b1da0-b465-11d1-9948-00c04f98bbc9} Browsing Enhancements ExtraPack 11,15,16299,0
{6BF52A52-394A-11d3-B153-00C04F79FAA6} Microsoft Windows Media Player Microsoft Windows Media Player 12,0,10011,16384
{6fab99d0-bab8-11d1-994a-00c04f98bbc9} MSN Site Access MSN_Auth 4,9,9,2
{7790769C-0471-11d2-AF11-00C04FA35D02} Address Book 7 10,0,16299,15
{89820200-ECBD-11cf-8B85-00AA005B4340} Windows Desktop Update IE4_SHELLID 10,0,16299,125
{89820200-ECBD-11cf-8B85-00AA005B4383} Web Platform Customizations BASEIE40_W2K 11,15,16299,0
{89B4C1CD-B018-4511-B0A1-5476DBF70820} DOTNETFRAMEWORKS
{8A69D345-D564-463c-AFF1-A69D9E530F96} Google Chrome 43,0,1,0
{9381D8F2-0288-11D0-9501-00AA00B911A5} Dynamic HTML Data Binding Tridata 11,15,16299,0
{C9E9A340-D1F1-11D0-821E-444553540600} Internet Explorer Core Fonts Fontcore 11,15,16299,0
{de5aed00-a4bf-11d1-9948-00c04f98bbc9} HTML Help HTMLHelp 10,0,16299,15
{E92B03AB-B707-11d2-9CBD-0000F87A369E} Active Directory Service Interface ADSI 5,0,00,0
{FEBEF00C-046D-438D-8A88-BF94A6C9E703} .NET Framework .NETFramework 2,0,50727,0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment