database-tools

Appending the Clipboard

PowerShell 5 introduces cmdlets to copy text to the clipboard, and paste it back: Set-Clipboard and Get-Clipboard. Set-Clipboard also supports the...

read more

Deleting User Profiles

Whenever a user logs on to your computer, a user profile is created, and in the previous tip we explained how PowerShell can dump a list of user...

read more

Execution Policy Override

If PowerShell won’t let you run a script, you may have to enable script execution first, for example like this: Set-ExecutionPolicy -Scope...

read more

Formatting Text Output

If you’d like to nicely format output text, you may want to use a PSCustomObject and output it as a formatted list like so: $infos =...

read more
1 77 78 79 80 81 198