Check Block Size / Allocation Unit on Windows

If you want to check the Block Size / Allocation Unit on Windows, you can use the following powershell command: Check volumes blocksize. Get-CimInstance -ClassName Win32_Volume | Select-Object Name,Filesystem,Label,Blocksize | Sort-Object Name | Format-Table -AutoSize Get-WmiObject -Class Win32_Volume -ComputerName $env:COMPUTERNAME | Select BlockSize,Name,FileSystem | Format-Table -AutoSize Check partitions blocksize and StartingOffset. Get-WmiObject -Class Win32_DiskPartition -ComputerName $env:COMPUTERNAME | select Name, NumberOfBlocks, Size, StartingOffset, Blocksize | Format-Table -AutoSize Check only the CSV (Cluster shared volume) on the Hyper-V Cluster Get-CimInstance -ClassName Win32_Volume | where {$_....

August 17, 2023 · 1 min · by Chisqi

Purestorage Offloaded Data Transfer (ODX)

Introduction Offloaded Data Transfers (ODX) is a feature in Microsoft Windows operating systems that was introduced in Windows 8 and Windows Server 2012. ODX is designed to improve the efficiency and speed of data transfer operations, especially in scenarios involving large files and remote storage systems. It allows for the offloading of data transfer operations to the storage hardware, reducing the load on the CPU and improving performance. Key aspects of Offloaded Data Transfers (ODX): Offloading: ODX offloads certain data transfer tasks from the host system (the computer initiating the transfer) to the storage array or storage device itself....

January 28, 2023 · 4 min · by Chisqi

Purestorage Powershell Toolkit 3.0

Introduction The Pure Storage PowerShell Toolkit 3.0 is a new beginning for the Toolkit. The original version was released in 2016 and was based on older versions of the Pure Storage PowerShell SDK 1.x release. The Toolkit provides useful cmdlets for customers and the Pure Storage Field Support to use in troubleshooting, monitoring, reporting, best practices, and configuration. The PowerShell Toolkit leverages the Pure Storage PowerShell SDK 2.16 for some of the cmdlets....

November 28, 2022 · 2 min · by Chisqi

Purestorage - How to Use Test-WindowsBestPractices

Introduction When deploying a new Pure Storage FlashArray it is important to make sure that Microsoft Windows Server is configured properly and set to the recommended best practice settings for Multipath-IO, TRIM/UNMAP support, and checking that Offloaded Data Transfer (ODX) is enabled. In order to make this easy a Windows PowerShell cmdlet, Test-WindowsBestPractices, was introduced in the Pure Storage PowerShell Toolkit. Windows Server Version Support The Test-WindowsBestPractices PowerShell cmdlet only works with Microsoft Windows Server 2012, 2012 R2, 2016, 2019, and 2022....

November 18, 2022 · 3 min · by Chisqi

The Pure Storage Management Extension for Microsoft SQL Server Management Studio

Introduction Pure Storage® FlashArray Management Extension for Microsoft SQL Server Management Studio (aka FA SSMS Extension) is a database backup and restore extension for Microsoft SQL Server Management Studio (SSMS). The extension supports creating Application Consistent snapshots using the Pure Storage Volume Shadow Copy Service (VSS) Hardware Provider. The extension can be used from the SSMS GUI or automated using the Pure Storage Backup SDK Windows PowerShell module. Database Administrators (DBAs) can manage backup and restore operations on local and remote databases from a centralized SSMS deployment....

November 15, 2022 · 3 min · by Chisqi

Nimble Storage CLI cheatsheet

Accessing the CLI Open an SSH client, such as PuTTY or OpenSSH. Enter the host name or IP address of the array. If you are asked to accept the authorization key, type yes. Log into the array with the username and the password you created when configuring the array. The connection is made and you can now run the array CLI commands. For example, typing array --list displays the name, serial, model, version, and status of the array: $ array --list c20-array2 AA-102081 CS220 3....

July 2, 2021 · 2 min · by Chisqi