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
- Setting up Local Administrator Password Solution (LAPS)
- Quick Hits: Ping Sweep One Liner
- Using PowerShell to Query Web Site Information
- Beginning with PowerShell and Word
- PowerShell and Excel: Adding Some Formatting To Your Report
- Locating Mount Points Using PowerShell
- Speedy Ping 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
Tag Archives: quickhits
Quick Hits: List All Available WMI Namespaces Using PowerShell
Sometimes it is worth knowing what the available namespaces are in WMI, especially if you are looking for a specific class and are not sure where it might be (sometimes it just isn’t under Root\Cimv2). Another reason is just for … Continue reading
Quick Hits: Finding, Creating and Removing PowerShell Type Accelerators
I saw a question recently that somebody asked on how to locate and create custom type accelerators without the need of the PowerShell Community Extensions (PSCX) and its type accelerator, [accelerator]. I quickly answered his question, but decided that this … Continue reading
Posted in powershell, Tips
Tagged accelerator, Powershell, quickhits, typeaccelerator, types
3 Comments
Quick Hits: Set the Default Property Display in PowerShell on Custom Objects
Whenever we write a function or a script and choose what properties to display, we are usually greeted with the usual display of every single property that we used instead of what the the PowerShell cmdlets and other module cmdlets … Continue reading
Posted in powershell, Tips
Tagged DefaultDisplay, Powershell, Properties, PSMemberSet, quickhits
11 Comments
Quick Hits: Determine Tombstone Lifetime in Active Directory
Recently, I wanted to know what the tombstone lifetime was in my environment and decided to find this using PowerShell. Given, I could have done something with dsquery or dug in using the ADSI type accelerator to connect to my … Continue reading
Quick Hits: Speed Up Some of your Commands by Avoiding the Pipeline
Sometimes running a command using the pipeline can take a while depending on the amount of data that is being processed. For the easiest example, I will make use of Get-Random to demonstrate the differences in speed and how much … Continue reading