Books

Translate This Blog
-
Recent Posts
Top Posts
- Querying UDP Ports with PowerShell
- Changing Ownership of File or Folder Using PowerShell
- Avoiding System.Object[] (or Similar Output) when using Export-Csv
- PowerShell and Events: Object Events
- PowerShell and Excel: Adding Some Formatting To Your Report
- Querying UDP Ports with PowerShell: Part 2
- PowerShell and Events: Permanent WMI Event Subscriptions
- Give PowerShell a Voice Using The SpeechSynthesizer Class
- Using PowerShell Parameter Validation to Make Your Day Easier
- Creating a Symbolic Link using PowerShell
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
Author Archives: Boe Prox
Guest Spot on PowerShell Magazine–PSTIP
I have a guest spot on the PowerShell Magazine that went live today. Check it out here: http://www.powershellmagazine.com/2012/10/22/pstip-quickly-generate-a-password/ Enjoy!
PowerShell And WPF: Canvas
In a previous article, I demonstrated adding a button to your created window and using it. I also mentioned that only 1 button could have been added due to the window treating that as a single child and that only … 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
PowerShell and WPF: Buttons
In my second installment of working with PowerShell and WPF, I will touch on the subject of Buttons. They can be a pretty important part of your UI and should be treated as such. Ok, so buttons seem pretty simple; … Continue reading
PowerShell and WPF: Introduction and Building Your First Window
Building a user interface (UI) in PowerShell may sound like a difficult process and you may not even know where to begin to accomplish something like this. Luckily, there are a few choices on what you can use to create … Continue reading