Powershell

What Is Going On Here?

Frequently, you will have PowerShell retrieve data, and then you pick parts of the information and use it in reports. Like here: $serial =...

read more

Password Obfuscator Script

Ever had the need to store a password in a script? Ever needed to automate a credential dialog? First: storing passwords and other confidential...

read more

Finding Scripts by Keyword

With an increasing number of PowerShell scripts on your hard drive, it can become hard to find the script you are looking for. Here's a helper...

read more

Creating Symbolic Links

Symbolic links work very similar to "regular" link files (*.lnk): they can point to virtually any file or folder and even UNC paths....

read more

Creating Hard Links

Hard links are file "phantoms" in the NTFS file system. They make one file visible in multiple file system locations (within one volume)....

read more

Vertical Grid View

You can always pipe objects to Out-GridView and get a nice extra window with all of the object properties lined up as table. That's useful if...

read more

Finding Type Accelerators

PowerShell maintains a list of shortcuts for .NET types to make coding more convenient for you. For example, to convert a string to a DateTime type,...

read more

Returning Multiple Values

A PowerShell function can return multiple values. To receive them, simply assign the result to multiple variables: function Get-DateTimeInfo { #...

read more
1 81 82 83 84 85 130