Omaha PowerShell Users Group
Books
2013 Powershell Scripting Games
Translate This Blog
-
Recent Posts
Top Posts
- Querying UDP Ports with PowerShell
- Starting,Stopping and Restarting Remote Services with PowerShell
- Changing Ownership of File or Folder Using PowerShell
- Using PowerShell to Query Web Site Information
- Building a TCP Server Using PowerShell
- Building a Chart Using PowerShell and Chart Controls
- Locating Mount Points Using PowerShell
- Create a Mouse Cursor Tracker using PowerShell and WPF
- PowerShell and Excel: Adding Some Formatting To Your Report
- Avoiding System.Object[] (or Similar Output) when using Export-Csv
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
Category Archives: scripts
Read File Without Updating LastAccess TimeStamp using PowerShell
In my last article I showed you how to write to a file covertly without updating the LastWrite and LastAccess time and even avoid being tripped by the FileSystemWatcher event. This is a follow-up to that article that uses many … Continue reading
Write to an Existing File Without Updating LastWriteTime or LastAccessTimestamps Using PowerShell
This little trick was something I stumbled upon while attempting to help solve an issue with a file scan that was about to take place. We wanted to know the last time a file was accessed and build out a … Continue reading
PowerShell and Events: Object Events
Continuing in my little series on PowerShell and different types of events, I will go into working with Object events and how you can use those with the Register-ObjectEvent cmdlet. Because the parameters are the same as Register-EngineEvent, I won’t … 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
PowerShell and Events: Engine Events
There are 4 types of events that you can register and use for Event Handling: Engine Events, Object events (.Net),CIM (PowerShell V3 only) and WMI events . These provide a great way to provide some asynchronous event handling to monitor … Continue reading