About 262 results
Open links in new tab
  1. ConvertFrom-SecureString (Microsoft.PowerShell.Security) - PowerShell

    The ConvertFrom-SecureString cmdlet converts a secure string (System.Security.SecureString) into an encrypted standard string (System.String). Unlike a secure string, an encrypted standard string can …

  2. How to convert SecureString to System.String? - Stack Overflow

    May 4, 2009 · How can I convert an ordinary System.Security.SecureString to System.String? I'm sure many of you who are familiar with SecureString are going to respond that one should never …

  3. ConvertFrom-SecureString Cheat Sheet - Command in Line

    The ConvertFrom-SecureString command is a really crucial tool in the PowerShell suite, mostly designed for Windows environments, to convert a secure string into an encrypted standard string. It’s …

  4. Converting SecureString to String in C# - TechieHook

    Jul 23, 2024 · In this article, we will learn how to convert SecureString to String in C# while maintaining data security.

  5. Convert SecureString to String - Get Secured Credential

    Feb 20, 2017 · To make this work you will need to ensure/consider the following: You cannot use type secure text to type unless the object that you are typing into is secure e.g. a password box. However, …

  6. How to Convert a Secure String to Plain Text in PowerShell

    Feb 12, 2024 · This tutorial will teach you to convert a secure string to plain text in PowerShell.

  7. How to encrypt credentials & secure passwords with PowerShell

    Mar 9, 2026 · Use ConvertFrom-SecureString to convert a SecureString into an encrypted standard string that can be saved to a file and reused later. You can use the command directly or pipe results …

  8. Convert a secure string to plain text - GitHub Pages

    Nov 11, 2019 · To get the unencrypted string we will to leverage built-in .Net methods which, while not as straightforward as a cmdlet, will get the job done here’s the syntax. The above will leverage the …

  9. Working with SecureString in - Jonathan Crozier

    Apr 7, 2022 · In this article, I look at how SecureString works and how to use it properly. I also look at how to convert SecureString to and from plain strings when the security of data in memory is not of …

  10. PowerShell Convert Secure String to Plain Text

    Jul 22, 2025 · Learn how to convert a Secure String to plain text in PowerShell. Step-by-step guide with examples to handle credentials and secure data safely and effectively.