windows (2)

How to disable the beep in PowerShell

This was annoying, but easily resolved. You can easily disable this in PowerShell by running this command: Set-PSReadlineOption -BellStyle None However, what you probably want is to disable this every time you open up PowerShell. Doing this is simple. In PowerShell, type notepad $profile This…

PowerShell for Bash Users

Working with Objects PowerShell works with objects rather than plain text. While this might seem odd, it's also pretty powerful. So, if you run the ls command, it will return a bunch of objects that have fields (Members). You can figure out what this is easily…