Get-Appxpackage is a PowerShell command that can display a list of the app packages that are installed in a user profile. It includes all the applications that are installed from the Microsoft Store ...
Wouldn't it be cool if PowerShell could automatically write scripts so that you didn't have to? Believe it or not, it is possible. Of course the old saying that if something sounds too good to be true ...
You don't need to download a third-party tool to find duplicates ...
Last time, I discussed how to get PowerShell and SQLPS up and running on your machines. And much like my dog chasing its tail, you're probably asking yourself, "Now that I have it, what do I do with ...
You can use the GetBIOS PowerShell module to retrieve settings from various BIOS manufacturers on either a local or remote computer. This post will show you how to access computer BIOS settings using ...
Are you a Windows administrator? Did you make a new year’s resolution to learn PowerShell this year? If so, you have come to the right place. In this piece, I will get you started by orienting you to ...
I used to avoid the command line as much as possible. PowerShell, especially, felt like one of those things you only touched if something had gone very wrong. It looks outdated, it’s not exactly ...
If you're getting error messages while trying to manage a remote Hyper-V host from a Windows 10 desktop, here's one possible reason -- and a solution. I recently ...
I'm writing a script to that will invoke the GIMP batch processor. I've written the GIMP Script-Fu scripts. I've written the PowerShell wrapper. However, I can't get PowerShell to properly pass the ...
You might use something like this with Read-Host. PS C:\> $c = Read-host "Enter the name of a wmiclass" Enter the name of a wmiclass: win32_service There's no ...