Unable to declare this as string for type into activity

I am unable to declare the below string as variable to use it in type into activity

$env:AZCOPY_SPA_CLIENT_SECRET=“W~f7Q~vlOJsFPzxiWvhAUVTSkjPR30AnAoc”

it should be envVariable

Hi @Sudheer_Kumar_S ,

I believe it is due to the presence of double Quotes in the String. We can modify to include the Double Quotes by adding one more besides it in the below way :

$env:AZCOPY_SPA_CLIENT_SECRET=""W~f7Q~vlOJsFPzxiWvhAUVTSkjPR30AnAoc""
1 Like

“$env:AZCOPY_SPA_CLIENT_SECRET=”“W~f7Q~vlOJsFPzxiWvhAUVTSkjPR30AnAoc”“”

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.