database-tools

Managing File Shares

The Windows operating system ships with the “Storage” PowerShell module which can be used both from Windows PowerShell and PowerShell 7. One of the...

read more

Careful with Arrays

Careful with Arrays With PowerShell you never know whether a cmdlet returns an array or a single object. That’s because PowerShell automatically...

read more

Get Volume IDs (Part 2)

In Windows 10 and better, you can use Get-Volume to get volume IDs and other information about your drives: PS> Get-Volume DriveLetter...

read more

Get Volume IDs (Part 1)

You can query WMI to get a list of your drives volume IDs like so: Get-CimInstance -ClassName Win32_Volume | Select-Object -Property DriveLetter,...

read more
1 6 7 8 9 10 198