Introduction At the time of writing this article App-V 5 is not natively supported by SCCM 2007. Publishing App-V 5 packages with SCCM 2007 requires either deploying the MSI which gets created by the sequencer, or create a custom Powershell script … Continue reading →
Here’s an example of using PowerShell and FTP to create a directory using credentials to authenticate. If there is an error during the process, we try to see if it’s because the directory already existed. If not, then it must … Continue reading →
Similarly to my post here this post describes how we can use Powershell to extract information from a Sharepoint list. $list = $null $service = $null # The uri refers to the path of the service description, e.g. the .asmx page … Continue reading →
This blog provides an example of using base 64 encoding for images in PowerShell. Base 64 is a binary-to-text encoding scheme – in other words, we can represent binary data (for example, a JPG or a PNG) as an ASCII … Continue reading →