#PSTip Working with a Uniform Resource Identifier (URI) in PowerShell
Note: This tip requires PowerShell 2.0 or above. PowerShell offers a powerful method of working with URIs by leveraging the System.
Read MoreNote: This tip requires PowerShell 2.0 or above. PowerShell offers a powerful method of working with URIs by leveraging the System.
Read MoreThe parameters for a PowerShell command can be quite complex. Some parameters are only valid in certain parameter sets. Parameters have types, may be mandatory or optional, can have aliases and may or may not support pipeline input.
Read MoreWhen dealing with files under source control it is quite often useful to be able to make a bunch of files readonly or writable in bulk.
Read MoreWe often deal with XML files whether it is modifying TFS work item templates, C# project files, or our own XML data files.
Read MoreXML is great for easily storing structured data and is pretty easy to work with in PowerShell. However, sometimes you run across XML that is so poorly formatted you lose out on XML’s human readability.
Read MoreText files created by PowerShell are little endian Unicode (UTF-16LE) by default. You can see this by inspecting the first couple of bytes of a text file for a BOM i.
Read More