Reputation: 642
I am not an advanced Perl or Windows developer.
My question, is it possible via ActivePerl 5.22 on Win64 to interface with the Win32 Credential Manager API/windows.security.credentials. I want to use the API to manage user credentials, by that view accounts, add accounts and delete accounts.
I found a PowerShell example that does exactly that but I cannot use powershell at work, also looking to understand the limitations of Perl when it comes to interacting wih Win32 API's. https://gallery.technet.microsoft.com/scriptcenter/PowerShell-Credentials-d44c3cde
Upvotes: 0
Views: 328
Reputation: 274
You can interact with Win32 api calls through the CPAN module WIn32::API
Upvotes: 1