Smart questions
Smart answers
Smart people
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Member Login

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips now!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

Join Tek-Tips
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

LINK TO THIS FORUM!

Add Stickiness To Your Site By Linking To This Professionally Managed Technical Forum.
Just copy and paste the
code below into your site.

Partner With Us!

"Best Of Breed" Forums Add Stickiness To Your Site
Partner Button
(Download This Button Today!)

Feedback

"...This was the ONLY place that I could find information that I could use to resolve the problem. So thanks once again to member TomSark and the SQL forum!..."

Geography

Where in the world do Tek-Tips members come from?
fortage (MIS)
18 May 12 10:04
I'm trying to get the following variable and text on one line in the output file but the result is two lines. $Computer[0] is a column in a datatable "filled" from a SQL query. Please advise.

Write-Output $Computer[0]" : Server Name" | Out-File $ReportFile -Append
result two lines
------------
Write-Output $Computer[0]+ " : Server Name" | Out-File $ReportFile -Append
result the "+" character appears in the output file as well
------------
Write-Output "$Computer[0] : Server Name" | Out-File $ReportFile -Append
result System.Data.DataRow[0] : Server Name


58sniper (MIS)
18 May 12 23:35
Assign the entire line to a variable. Then write that variable to a file or the console screen.

Do you have your Tek-Tips.com Swag? I've got mine!

Stop by the new Tek-Tips group at LinkedIn.

Zelandakh (MIS)
24 May 12 17:19
You could do a for-each $computer write-output...

Or change the out-file -apend to a > outputfile.txt

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members!

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close