Posted On June 13, 2020

PowerShell: Stream Reader

kimconnect 0 comments
blog.KimConnect.com >> Codes >> PowerShell: Stream Reader

Have you ran into scripting situations where opening a file would result in locking from being editable by other users or processes? As a standard practice, it’s a good idea to have a habit of setting the correct intention of accessing a file using this example sequence:

$file='someXmlFile.xml'
$reader = New-Object System.IO.StreamReader($file)
$xml = $reader.ReadToEnd() # cast the variable as XML so PowerShell would handle it correctly
$reader.Close()

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

SQL: Use PowerShell to Generate a Database Object From Another Object

Have you ever wondered about the prospect of automating T-SQL executions on Windows? As your…

Kerberos “Second Hop” Problem

Issue Sometimes, there's a need to run WinRM into a "Jump Box" (trusted host in…

JavaScript: Random Quote Generator

Demo Link: https://blog.kimconnect.com/wp-content/projects/randomQuoteGenerator.html HTML code: <body> <div class="container fluid"> <div> <div class="text-center"> <h1> Random Quote…