Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

xDisk: Allow formatting ReFS without integrity features #123

Open
johlju opened this issue Nov 5, 2017 · 1 comment
Open

xDisk: Allow formatting ReFS without integrity features #123

johlju opened this issue Nov 5, 2017 · 1 comment
Assignees
Labels
enhancement The issue is an enhancement request. help wanted The issue is up for grabs for anyone in the community.

Comments

@johlju
Copy link
Member

johlju commented Nov 5, 2017

Details of the scenario you tried and the problem that is occurring:
Disk containing databases for Exchange 2016 is supported using disk with ReFS, but the recommendation is to have integrity features turned off.
Currently this resource does not support this. I suggest adding a [System.Boolean] parameter IntegrityStreams. If the new parameter is left out or set to $true, the disk is formatted with integrity features turned on (default behavior today). If the new parameter is set to $false then the disk is formatted with integrity features turned off (new behavior).

Best practice: Data integrity features must be disabled for the Exchange database (.edb) files or the volume that hosts these files. Integrity features can be enabled for volumes containing the content index catalog, provided that the volume does not contain any databases or log files.
https://technet.microsoft.com/en-us/library/ee832792(v=exchg.160).aspx

Example formatting a disk with integrity features turned off.

$partition = Get-Disk -Number 1 | New-Partition -UseMaximumSize
$partition | Format-Volume -FileSystem 'ReFS' -SetIntegrityStreams:$false -NewFileSystemLabel 'ExData'

The DSC configuration that is using the resource (as detailed as possible):

xDisk SVolume
{
    DiskId = 1
    DriveLetter = 'E'
    FSFormat = 'ReFS'
    AllocationUnitSize = 64KB

    # New parameter proposal
    IntegrityStreams = $true
}

Version of the Operating System and PowerShell the DSC Target Node is running:
Windows Server 2016

Version of the DSC module you're using, or 'dev' if you're using current dev branch:
Dev

@PlagueHO PlagueHO self-assigned this Nov 12, 2017
@PlagueHO PlagueHO added enhancement The issue is an enhancement request. help wanted The issue is up for grabs for anyone in the community. labels Nov 12, 2017
@PlagueHO
Copy link
Member

This looks pretty good to me @johlju and shouldn't be too difficult to implement. Let me see if I can get to this one this week.

@johlju johlju self-assigned this Jun 15, 2018
@SteveL-MSFT SteveL-MSFT added this to Help Wanted in powershell/dscresources May 14, 2019
@SteveL-MSFT SteveL-MSFT removed this from Help Wanted in powershell/dscresources Nov 27, 2019
@johlju johlju removed their assignment Jun 21, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement The issue is an enhancement request. help wanted The issue is up for grabs for anyone in the community.
Projects
None yet
Development

No branches or pull requests

2 participants