diff --git a/Registry Key Scripts/Get DUO Reg Values.ps1 b/Registry Key Scripts/Get DUO Reg Values.ps1 new file mode 100644 index 0000000..058d457 --- /dev/null +++ b/Registry Key Scripts/Get DUO Reg Values.ps1 @@ -0,0 +1,16 @@ +<# +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 \ No newline at end of file