Showing items from Tips and Tricks

#PSTip Ignoring errors

Note: This tip requires PowerShell 3.0 or above. PowerShell lets you control how it responds to a non-terminating error (an error that does not stop the cmdlet processing) globally via the $ErrorActionPreference preference variable, or at a cmdlet …

Read More

#PSTip Quickly generate a password

Note: This tip requires PowerShell 2.0 and above Generating a password usually consists of creating separate collections containing uppercase letters, lowercase letters, numbers and non-alphanumeric characters (@,%,$,^,&,*, etc…) and then …

Read More