Omaha PowerShell Users Group
Books
2013 Powershell Scripting Games
Translate This Blog
-
Recent Posts
Top Posts
- Changing Ownership of File or Folder Using PowerShell
- Querying UDP Ports with PowerShell
- Starting,Stopping and Restarting Remote Services with PowerShell
- PowerShell Patch Audit/Install GUI (PoshPAIG) Released
- Locating Mount Points Using PowerShell
- Quick Hits: Finding Exception Types with PowerShell
- Avoiding System.Object[] (or Similar Output) when using Export-Csv
- PowerShell and Excel: Adding Some Formatting To Your Report
- Building a Chart Using PowerShell and Chart Controls
- Using PowerShell Parameter Validation to Make Your Day Easier
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: wmi
PowerShell and Events: WMI Temporary Event Subscriptions
It’s been a while since my last post in my series on PowerShell and Events (February to be exact), but now that I have some projects caught up, it is time to make a return to wrap up this series … Continue reading
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
Speedy Network Information Query Using PowerShell
Taking a page from my Advanced Event 2 script that I used in my Expert Commentary on Hey, Scripting Guy!, I wanted to put something together to query for basic networking information from both local and remote systems and accomplish … Continue reading
Checking for failing Hard Drives using S.M.A.R.T and PowerShell
I noticed a link to an article on twitter yesterday that talked about how you can use PowerShell to query for a SMART enabled hard drive and detect a possible imminent failure. It was an interesting article and showed me … Continue reading
Use PowerShell to remove local profiles
A couple of days ago at work, I was asked a question concerning whether a specific one-liner of code would work remotely. That one-liner was (Get-WMIObject Win32_UserProfile | ? {$_.localpath –like “*username).Delete()} I told him that, yes, in fact it … Continue reading