Books

Translate This Blog
-
Recent Posts
Top Posts
- Querying UDP Ports with PowerShell
- Changing Ownership of File or Folder Using PowerShell
- Setting up Local Administrator Password Solution (LAPS)
- Avoiding System.Object[] (or Similar Output) when using Export-Csv
- Using PowerShell Parameter Validation to Make Your Day Easier
- Quick Hits: Finding Exception Types with PowerShell
- Retrieving a Registry Key LastWriteTime Using PowerShell
- Beginning with PowerShell and Word
- PowerShell and Excel: Adding Some Formatting To Your Report
- Building a Chart Using PowerShell and Chart Controls
Archives
Categories
- .net
- api
- array
- background jobs
- binary
- book
- c#
- clock
- codeplex
- com object
- convert
- CTP
- database
- deep dive
- excel
- Favorites
- function
- groups
- guest blog
- hash table
- Internet Explorer
- ise
- mcpmag
- module
- MVP
- network
- news
- parameter
- patches
- performance
- pinvoke
- podcast
- port
- PoshChat
- poshpaig
- PoshRSJob
- poshwsus
- powercli
- powerscripting
- Powershell
- printers
- quickhits
- reflection
- regex
- registry
- Regular Expressions
- report
- resolution
- runspace
- runspaces
- scripting games 2012
- scripting games 2013
- scripting guy
- scripts
- SMO
- Speaker
- speaking
- SQL
- tcp
- tips
- tsql
- updates
- user group
- V3
- V4
- v5
- weather
- widget
- win32API
- winter scriting games 2014
- wmi
- word
- WPF
- wsus
- xaml
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
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 delegate, dispatcher, Powershell, runspace, synchronized hashtable, threads, WPF
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
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