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
- Avoiding System.Object[] (or Similar Output) when using Export-Csv
- Starting,Stopping and Restarting Remote Services with PowerShell
- PowerShell and Excel: Adding Some Formatting To Your Report
- Locating Mount Points Using PowerShell
- Quick Hits: Ping Sweep One Liner
- Building a Chart Using PowerShell and Chart Controls
- Quick Hits: Finding Exception Types with PowerShell
- Using PowerShell to Query Web Site Information
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
List All Files Regardless of 260 Character Path Restriction Using PowerShell and Robocopy
A common pain had by many System Administrators is when you are trying to recursively list all files and folders in a given path or even retrieve the total size of a folder. After waiting for a while in hopes … Continue reading
Use PowerShell To Calculate the Hash of a File
I’m pretty sure that everyone has something similar to a hash calculator that has been written in PowerShell or some other language and I am no different. This is my take on a simple file hash calculator to determine the … Continue reading
Get Available Constructors Using PowerShell
Working with PowerShell sometimes (or a lot of the time) involves using .Net types to create objects that can be used for more in depth scripting of various items. It is one thing to know the type that you need … Continue reading
Fun with PowerShell and Permutations
Somewhere a while back I was reading about working with trying to find all possible combinations of a given word, called Permutations. Since my main goal was to take a given word (or string) and cycle through all of the … Continue reading