Tag Archives: runspace

Use PowerShell and WMI to Locate Multiple Files on Any Drive in your Domain

A couple of days ago I was browsing my RSS feeds and came across an article that PowerShell MVP Jeffery Hicks wrote regarding the use of finding files using WMI with a function called Get-CimFile. That article is listed below: … Continue reading

Posted in powershell, scripts | Tagged , , , | 9 Comments

PowerShell and WPF: Writing Data to a UI From a Different Runspace

One of the biggest pain points when working with WPF and PowerShell is that everything is done on a single thread with the UI. This includes performing various activities related to events such as button clicking and selecting data. While … Continue reading

Posted in powershell, WPF | Tagged , , , , , , | 54 Comments

Finding The CachedMode Setting In Outlook 2010 Using PowerShell

I had a requirement come in find the current CachedMode setting on the Outlook 2010 clients for all of the users in the domain. Seems like a simple request that can be solved with the Exchange PowerShell cmdlets, right? Wrong. … Continue reading

Posted in powershell, scripts | Tagged , , , | 8 Comments

Using Background Runspaces Instead of PSJobs For Better Performance

In my previous article, I showed you a function to query remote servers for their network information using background runspaces to speed things up. To follow up on that article based on some questions and comments I received from that … Continue reading

Posted in powershell, scripts | Tagged , , , | 42 Comments