Beginning in PowerShell 3.0, you can create pre-initialized objects by using a hash table. Simply add the properties you want to preinitialize, then...
posts-powershell
Use Get-CimInstance with DCOM
PowerShell 3.0 added an alternative to Get-WmiObject: Get-CimInstance seems to work very similar and can retrieve information from the internal WMI...
Loading a Base64-encoded Picture into WPF Window
In a previous tip we illustrated how you can convert any picture into a Base64-encoded string. Today, we'd like to show how you can load a...
Encoding Pictures
If your script needs resources such as icons or pictures, you do not have to ship these resources separately. They can be Base64-encoded and added...
Encode and Decode Text as Base64
Here is a simple way to encode text as a Base64 string: #requires -Version 1 $text = 'Hello World!'...
Managing Windows Firewall
Beginning in Windows 8 and Server 2012, there is a cmdlet that helps you enable the client firewall for various profiles: Set-NetFirewallProfile...
Finding Recursive AD Memberships
In AD, there is a strange-looking filter: 1.2.840.113556.1.4.1941. It is called "matching rule in chain" and can be used to quickly find...
Clearing Recycle Bin
Before the advent of PowerShell 5.0, to clear the recycler, you would have to manually delete the content of the hidden $Recycle.Bin folder in the...
Force User to Change Password
Use this code snippet to force a user to change his/her password: #requires -Version 1 -Modules ActiveDirectory Set-ADUser -Identity username...
Get Automated First Level Support Response
Here is a fun function to provide you with a good first level support response in case everyone is off for Christmas: #requires -Version 3 function...
Get List of Operating Systems
If your boss needs a list of operating systems used by computers in your AD, this may be a good start: #requires -Version 1 -Modules ActiveDirectory...
Analyze Operating System by Organizational Unit
Here is a quick script that scans all OUs in your Active Directory for computer accounts, then groups them per OU by operating system: #requires...