Input arguments with special characters are not working.

Issue #37 open
Prashanth Reddy Annedla created an issue

Steps to Repro:

  • Create a PowerShell inline task and have the below content in it.
  • Pass the argument as mentioned below

Script: param ([parameter(Mandatory=$true, Position=0)] [string]$specialpass )

Write-Output "Value passed as argument - $specialpass"

Arguments: -specialpass "Percentage%Will%Be%Missing%"

Output: Expected: Percentage%Will%Be%Missing% Actual: PercentageBe

Steps taken: Tried to parse the input in different ways but unsuccessful.

Comments (2)

  1. Log in to comment