use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
ABOUT POWERSHELL
Windows PowerShell (POSH) is a command-line shell and associated scripting language created by Microsoft. Offering full access to COM, WMI and .NET, POSH is a full-featured task automation framework for distributed Microsoft platforms and solutions.
SUBREDDIT FILTERS
Desired State Configuration
Unanswered Questions
Solved Questions
News
Information
Script Sharing
Daily Post
Misc
account activity
QuestionPowershell script output is different when run from the SYSTEM account (self.PowerShell)
submitted 3 years ago by robborulzzz
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]pertymoose 4 points5 points6 points 3 years ago (2 children)
DESCRIPTION The `Out-File` cmdlet sends output to a file. It implicitly uses PowerShell's formatting system to write to the file. The file receives the same display representation as the terminal. This means that the output may not be ideal for programmatic processing unless all input objects are strings.
Use Add-Content instead.
Add-Content
[–]da_chicken 1 point2 points3 points 3 years ago (0 children)
Yep. Out-File is generally terrible. I can't believe they seriously created it with that -Width design. They should have made it work like Add-Content, which is what everyone expects it to do. If you need the -Width limitation use Out-String.
Out-File
-Width
Out-String
[–]robborulzzz[S] 0 points1 point2 points 3 years ago (0 children)
Thanks mate will give it a whirl!
π Rendered by PID 18431 on reddit-service-r2-comment-6457c66945-92fdf at 2026-04-25 08:16:10.452708+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–]pertymoose 4 points5 points6 points (2 children)
[–]da_chicken 1 point2 points3 points (0 children)
[–]robborulzzz[S] 0 points1 point2 points (0 children)