Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
14 views
1 page
Get CLSID
Uploaded by
conapoh603
AI-enhanced title
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as PDF, TXT or read online on Scribd
Download
Save
Save GetCLSID For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
0 ratings
0% found this document useful (0 votes)
14 views
1 page
Get CLSID
Uploaded by
conapoh603
AI-enhanced title
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as PDF, TXT or read online on Scribd
Carousel Previous
Carousel Next
Download
Save
Save GetCLSID For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
Download now
Download
You are on page 1
/ 1
Search
Fullscreen
<#
This script extracts CLSIDs and AppIDs related to LocalService.DESCRIPTION
Then exports to CSV
#>
$ErrorActionPreference = "Stop"
New-PSDrive -Name HKCR -PSProvider Registry -Root HKEY_CLASSES_ROOT
Write-Output "Looking for CLSIDs"
$CLSID = @()
Foreach($ID in (Get-ItemProperty HKCR:\clsid\* | select-object AppID,@{N='CLSID'; E={$_.pschildnam
if ($ID.appid -ne $null){
$CLSID += $ID
}
}
Write-Output "Looking for APIDs"
$APPID = @()
Foreach($AID in (Get-ItemProperty HKCR:\appid\* | select-object localservice,@{N='AppID'; E={$_.psc
if ($AID.LocalService -ne $null){
$APPID += $AID
}
}
Write-Output "Joining CLSIDs and APIDs"
$RESULT = @()
Foreach ($app in $APPID){
Foreach ($CLS in $CLSID){
if($CLS.AppId -eq $app.AppID){
$RESULT += New-Object psobject -Property @{
AppId = $app.AppId
LocalService = $app.LocalService
CLSID = $CLS.CLSID
}
break
}
}
}
$RESULT = $RESULT | Sort-Object LocalService
# Preparing to Output
$OS = (Get-WmiObject -Class Win32_OperatingSystem | ForEach-Object -MemberName Caption).Trim
$TARGET = $OS -Replace " ","_"
# Make target folder
New-Item -ItemType Directory -Force -Path .\$TARGET
# Output in a CSV
$RESULT | Export-Csv -Path ".\$TARGET\CLSIDs.csv" -Encoding ascii -NoTypeInformation
# Export CLSIDs list
$RESULT | Select CLSID -ExpandProperty CLSID | Out-File -FilePath ".\$TARGET\CLSID.list" -Encodi
# Visual Table
$RESULT | ogv
You might also like
Essential n8n Playbook
From Everand
Essential n8n Playbook
Leandro Calado
No ratings yet
Splunk-CrowdStrike Hunting Cheat Sheet
PDF
No ratings yet
Splunk-CrowdStrike Hunting Cheat Sheet
8 pages
DBA Sheet 6.1
PDF
100% (2)
DBA Sheet 6.1
520 pages
Adreport ps1 v2
PDF
No ratings yet
Adreport ps1 v2
29 pages
Windows Analysis Steps
PDF
No ratings yet
Windows Analysis Steps
3 pages
RegisterBackup ps1
PDF
No ratings yet
RegisterBackup ps1
2 pages
CompDB App
PDF
No ratings yet
CompDB App
2 pages
ADHealth Check
PDF
No ratings yet
ADHealth Check
8 pages
Netbackup Health Check Windows Unix
PDF
No ratings yet
Netbackup Health Check Windows Unix
9 pages
CompDB App
PDF
No ratings yet
CompDB App
2 pages
Windows Component Cleanup
PDF
No ratings yet
Windows Component Cleanup
2 pages
How To Script To List Installed Software On Multiple Computers - Action1
PDF
No ratings yet
How To Script To List Installed Software On Multiple Computers - Action1
8 pages
System Info 6
PDF
No ratings yet
System Info 6
5 pages
Vulnerability Scanner
PDF
No ratings yet
Vulnerability Scanner
12 pages
Most Used Powershell Command
PDF
No ratings yet
Most Used Powershell Command
13 pages
Power Shell Scripts 1
PDF
No ratings yet
Power Shell Scripts 1
8 pages
New 1
PDF
No ratings yet
New 1
2 pages
SystemInfo v2
PDF
No ratings yet
SystemInfo v2
12 pages
Regback Vbs
PDF
No ratings yet
Regback Vbs
3 pages
Powershell Bytespercluster
PDF
No ratings yet
Powershell Bytespercluster
2 pages
Comandos de Windows
PDF
No ratings yet
Comandos de Windows
1,595 pages
Duckycode
PDF
No ratings yet
Duckycode
4 pages
Blue Team Notes
PDF
No ratings yet
Blue Team Notes
295 pages
ExchangeLogCollector ps1
PDF
No ratings yet
ExchangeLogCollector ps1
112 pages
3
PDF
No ratings yet
3
18 pages
Reset Cursor Windows-V0.1.ps1
PDF
No ratings yet
Reset Cursor Windows-V0.1.ps1
6 pages
Get ServiceAcl
PDF
No ratings yet
Get ServiceAcl
2 pages
PS Delete TEMP Logon User
PDF
No ratings yet
PS Delete TEMP Logon User
2 pages
Powershell Cluster Verification
PDF
No ratings yet
Powershell Cluster Verification
6 pages
Retroarch New Playlist - ps1
PDF
No ratings yet
Retroarch New Playlist - ps1
5 pages
Network Drive Audit Script
PDF
No ratings yet
Network Drive Audit Script
2 pages
Network Drive Audit Script
PDF
No ratings yet
Network Drive Audit Script
2 pages
CP Cli Ref Card
PDF
No ratings yet
CP Cli Ref Card
2 pages
Collect One Drive Logs
PDF
No ratings yet
Collect One Drive Logs
4 pages
Shell Scripting Examples
PDF
No ratings yet
Shell Scripting Examples
9 pages
Day 1
PDF
No ratings yet
Day 1
4 pages
Learning DTrace Part4
PDF
No ratings yet
Learning DTrace Part4
13 pages
Message
PDF
No ratings yet
Message
8 pages
Test
PDF
No ratings yet
Test
1,528 pages
Audit
PDF
No ratings yet
Audit
7 pages
Rkill
PDF
No ratings yet
Rkill
7 pages
C 100
PDF
100% (1)
C 100
71 pages
Script To Monitor Server Availability
PDF
No ratings yet
Script To Monitor Server Availability
2 pages
VMware VCenter/ESX/ESXi User Snapshot Reminder Script
PDF
No ratings yet
VMware VCenter/ESX/ESXi User Snapshot Reminder Script
7 pages
Script To Find All Active Sync Devices
PDF
No ratings yet
Script To Find All Active Sync Devices
9 pages
How To Detect and Remove Malware
PDF
No ratings yet
How To Detect and Remove Malware
8 pages
Invoke TrimarcADChecks
PDF
No ratings yet
Invoke TrimarcADChecks
10 pages
DBA Sheet 6.1
PDF
100% (1)
DBA Sheet 6.1
520 pages
Useful Commands
PDF
No ratings yet
Useful Commands
9 pages
DBA Sheet v5.8
PDF
No ratings yet
DBA Sheet v5.8
419 pages
AMASS
PDF
No ratings yet
AMASS
6 pages
c99 PHP
PDF
No ratings yet
c99 PHP
71 pages
How to a Developers Guide to 4k: Developer edition, #3
From Everand
How to a Developers Guide to 4k: Developer edition, #3
Xinc Cyberwizard
No ratings yet
Computer Engineering Laboratory Solution Primer
From Everand
Computer Engineering Laboratory Solution Primer
Karan Bhandari
No ratings yet
NgRx SignalStore: An effortless solution for state management
From Everand
NgRx SignalStore: An effortless solution for state management
Abdelfattah Ragab
No ratings yet
50 Recipes for Programming Angular
From Everand
50 Recipes for Programming Angular
Jamie Munro
4/5 (1)
Azure For Starters
From Everand
Azure For Starters
Chinmoy Mukherjee
No ratings yet
Stripe Integration in Angular: A Step-by-Step Guide to Creating Payment Functionality
From Everand
Stripe Integration in Angular: A Step-by-Step Guide to Creating Payment Functionality
Abdelfattah Ragab
No ratings yet
React Portfolio App Development: Increase your online presence and create your personal brand
From Everand
React Portfolio App Development: Increase your online presence and create your personal brand
Abdelfattah Ragab
No ratings yet
Ajax in One Hour, For Beginners, Learn Coding Fast
From Everand
Ajax in One Hour, For Beginners, Learn Coding Fast
Ray Yao
No ratings yet