Andy Tangeman

Results 3 comments of Andy Tangeman

I noticed the following template contains additional logic for formatting and partitioning: https://github.com/Esri/arcgis-powershell-dsc/blob/main/Modules/ArcGIS/Configurations-Azure/DiskConfiguration.ps1 However, it contains the same hardcoded integer value assuming that a temp disk is always present. Do...

@cameronkroeker This issue is not yet addressed, we just forked and attempted again using a VM SKU without temp disk and the result was the same.

We are proposing the following code fix: ``` $UnallocatedDataDisks = Get-Disk | Where-Object partitionstyle -eq 'raw' | Sort-Object number # Initialize an array of disks starting with F $Letters =...