Files
Powershell-Scripts/Registry Key Scripts/Get DUO Reg Values.ps1
T

16 lines
313 B
PowerShell
Raw Normal View History

2025-08-12 01:56:20 +00:00
<#
Author: Gabe Kerntke
Date: 07-01-2025
.Modified
7/01/25 (GabeK) - Script created
.Synopsis
Script gets the DUO App Host, IKey, and SKey values from registry
#>
# Start Script
Get-ItemProperty "HKLM:\SOFTWARE\Duo Security\DuoCredProv" | Select-Object Host, IKey, SKey
# End Script