Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8226479
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T15:47:08+00:00 2026-06-07T15:47:08+00:00

When do I need to surround strings in double quotes in PowerShell? Do I

  • 0

When do I need to surround strings in double quotes in PowerShell? Do I need all of these below?

& "$sendemail" -f "$sender" -t "$recipient" -u "$subject" -o message-file="$logpath" -s "$emailserver" -o tls=no
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T15:47:10+00:00Added an answer on June 7, 2026 at 3:47 pm

    In this case you need none.

    • $sendemail is hopefully already a string so the call operator & would work on it (maybe anything else would get coerced into a string anyway).
    • All other variables should be passed correctly-quoted as well:

      PS> $subject = 'subject string'
      PS> $recipient = 'recipient string'
      PS> $logpath = 'log path'
      PS> $emailserver = 'email server'
      PS> $recipient = 'recipient''s name'
      PS> $sender = 'sender''s name'
      PS> $sendemail = './echoargs.exe'
      PS> & $sendemail -f $sender -t $recipient -u $subject -o message-file=$logpath -s $emailserver -o tls=no
      arg 1: -f
      arg 2: sender's name
      arg 3: -t
      arg 4: recipient's name
      arg 5: -u
      arg 6: subject string
      arg 7: -o
      arg 8: message-file=log path
      arg 9: -s
      arg 10: email server
      arg 11: -o
      arg 12: tls=no
      

    You would need quotes if you want to pass literal strings that contain special characters (e.g. shell operators or spaces) to a program, e.g.:

    ./echoargs 'some spaces and a | pipe'
    

    If all your arguments either do not contain such things or are already contained in a string variable themselves you’re good without quotes.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to change the elements that surround some contents in a string, leaving
whenever we need to exception handling, we will surround with try/catch block, but when
I've got a list of directories that contain spaces. I need to surround them
I would like to Add a if statement to surround some code. I need
I need to surround individual words inside an HTML element with SPAN tags. So
Need to replace text bullet chars • with HTML ul & li tags within
I need to surround the following sql script with an if statment that checks
I have the following command cmd 'asdf a'sdf' I need to surround the arguments
I need to have the Content appear below the contentheader div and wrap the
Need to apply a filter to a file like this: TUPAC_0006:1:1:2554:2356#0/1 0 * 0

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.