HOTSPOT
You have a server that runs Windows Server 2016.
You run the commands shown in the following output:
PS G:\> Get-DedupVolume | f1.
Volume : G:
VolumeId : \\?\Volume{2efa2f6e-db4a-4bb1-aa15-
3 1ae8b073d16}\
Enabled : True
UsageType : Default
DataAccessEnabled : True
Capacity : 923.87 GB
FreeSpace : 393.98 GB
UsedSpace : 529.89 GB
UnoptimizedSize : 1008.7 GB
SavedSpace : 478.82. GB
SavingsRate : 47 %
MinimumFileAgeDays : 3
MinimumFileSize : 32768
NoCompress : False
ExcludeFolder :
ExcludeFileType :
ExcludeFileTypeDefault : {edb, jrs}
NoCompressionFileType : {asf, mov, wma, wmv ...}
ChunkRedundancyThreshold : 100
Verify : False
OptimizeInUserFiles : False
OptimizePartialFiles : False
PS G:\> Get-Date
Tuesday, June 21, 2016 5:29:28 PM
PS G:\DC01> dir | select Mode,LastWriteTime,Length,Name | ft -AutoSize
Mode LastWriteTime Length Name
- ------ ------------------ ------- -------
d---- 2/18/2015 11:54:56 AM Snapshots
d---- 2/18/2015 12:11:42 PM Virtual Machines
-a--- 6/21/2016 5:27:40 PM 51539608064 DC01.vhd
-a--- 6/18/2016 7:00:00 AM 12400 Readme.txt
-a--- 1/5/2015 7:00:00 AM 3939235840 Software.iso
For each of the following statements, select Yes if the statement is true. Otherwise, select No.
Hot Area:

Correct Answer:

Explanation/Reference:
Explanation:
DC01.vhd will not be processed by deduplication because it was last written to on 6/21/2016 and the current date is 6/21/2016, while the "MinimumFileAgeDays = 3". This means that a file must be unchanged for at least 3 days to be processed by deduplication
Readme.txt will not be processed by deduplication because its filesize is 12400 bytes, but the
"MinimumFileSize = 32768".
Software.Iso will be processed by deduplication. It is above the MinimumFileSize, and has not been modified for more than 3 days.