Books

Translate This Blog
-
Recent Posts
Top Posts
- Querying UDP Ports with PowerShell
- Changing Ownership of File or Folder Using PowerShell
- Use PowerShell to remove local profiles
- Quick Hits: Ping Sweep One Liner
- Building a TCP Server Using PowerShell
- Use PowerCLI to Report Storage Paths in your ESXi Environment
- PowerShell and WPF: Textbox
- Font Dialog Selection using PowerShell
- Retrieving contents of Hosts file using PowerShell
- Updating An Existing Get-ProductKey Function
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
PowerShell and WPF: Checkboxes
Continuing on with my series on PowerShell and WPF, I am going to talk about using checkboxes in a form. Checkboxes are a great way to allow a user to select a specific item or items prior to moving on … Continue reading
Building a Clipboard History Viewer Using PowerShell
I saw a question a while back in the Technet PowerShell Forum asking how one might start to build a clipboard viewer using PowerShell that met a few requirements: Have an open window aside from the PowerShell console Automatically list … Continue reading
Guest Spot on Hey, Scripting Guy! Talking ForEach
Check out my latest guest spot on Hey, Scripting Guy! talking about using ForEach, ForEach-Object and … ForEach (the alias of ForEach-Object). Give it a read and let me know what you think! http://blogs.technet.com/b/heyscriptingguy/archive/2014/07/08/getting-to-know-foreach-and-foreach-object.aspx
Quick Hits: Did I Really Lose My Output With Receive-Job By Not Using–Keep?
We have all probable been there at some point. We use Start-Job to run a command in the background like this: Start-Job -ScriptBlock { Get-Process | Where { $_.WS -gt 100MB } } -Name HighMemProcess Take note of the HasMoreData … Continue reading
Changing Ownership of File or Folder Using PowerShell
While working on a project recently, I needed to find an easy way to take ownership of a profile folder and its subfolders to allow our support staff to either delete the profile or be able to traverse the folder … Continue reading