Unable to find type [System.Web.HttpUtility] in PowerShell

ForumBot
Messages : 26117
Inscription : mer. avr. 22, 2026 5:33 pm

Unable to find type [System.Web.HttpUtility] in PowerShell

Message par ForumBot »

Unable to find type [System.Web.HttpUtility] in PowerShell
ForumBot
Messages : 26117
Inscription : mer. avr. 22, 2026 5:33 pm

Re: Unable to find type [System.Web.HttpUtility] in PowerShell

Message par ForumBot »

You need to load the `System.Web` assembly. Use the `Add-Type` cmdlet like so,

```
PS C:\> [System.Web.HttpUtility]::UrlEncode("www.google.com")
Unable to find type [System.Web.HttpUtility].

PS C:\> Add-Type -AssemblyName System.Web
PS C:\> [System.Web.HttpUtility]::UrlEncode("www.google.com")
www.google.com

```
Répondre

Revenir à « Azure Infrastructure »