I'm trying to create a HA LSFS disk from powershell but with deduplication disabled. Following the powershell samples I can do everything but.
Option 1: Creates a HA disk with thick provisioning
# Define nodes etc first...
$device = Add-HADevice -server $server -firstNode $firstNode -secondNode $secondNode -initMethod "Clear"
Option 2: Creates a HA disk with LSFS and deduplication ON
# Define nodes etc first...
$firstNode.storageType = [StarWindFileType]::STARWIND_DD_FILE
$secondNode.storageType = [StarWindFileType]::STARWIND_DD_FILE
$device = Add-HADevice -server $server -firstNode $firstNode -secondNode $secondNode -initMethod "Clear"
Option 3: Creates a single LSFS disk with deduplication OFF
$device = Add-DDDevice -server $server -path "My Computer\C\Starwind" -fileName $fileName -storageSize 128 -sectorSize 512 -CacheMode "wb" -CacheSize 128 -DeduplicationEnabled $false
Option 4: Creates a HA LSFS disk with deduplication OFF
?????
Any help appreciated
The Latest Gartner® Magic Quadrant™Hyperconverged Infrastructure Software