Windows Fair Share

Get help with troubleshooting issues
Post Reply
ibcos_mark
Posts: 2
Joined: Thu Aug 09, 2018 8:45 am

Windows Fair Share

Post by ibcos_mark » Wed May 08, 2019 11:10 am

Hi folks,

Can anyone answer whether or not TSPlus is affected by the Windows Dynamic Fair Share Scheduling (DFSS) for network and disk.

I have tested DFSS for CPU and by default, this appears to be off, which is fine as that's what I need.

However, I've read that by default the network/disk scheduling is set to be enabled on Server 2012/2016. There are no registry keys present to check these. I suspect they would appear if I installed the RDSH role, but since I'm running TSPlus, I don't plan on doing that!

it+t
Posts: 19
Joined: Thu Nov 09, 2017 8:29 am

Re: Windows Fair Share

Post by it+t » Thu May 09, 2019 2:23 pm

PowerShell:

=0 is disabling, =1 enabling.

$temp = (gwmi win32_terminalservicesetting -N "root\cimv2\terminalservices")
$temp.enableDFSS = 0
$temp.put()


$temp = (gwmi win32_terminalservicesetting -N "root\cimv2\terminalservices")
$temp.enableDFSS = 1
$temp.put()




$temp = (gwmi win32_terminalservicesetting -N "root\cimv2\terminalservices")
$temp.enableDiskFSS = 0
$temp.put()



$temp = (gwmi win32_terminalservicesetting -N "root\cimv2\terminalservices")
$temp.enableDiskFSS = 1
$temp.put()




$temp = (gwmi win32_terminalservicesetting -N "root\cimv2\terminalservices")
$temp.enableNetworkFSS = 0
$temp.put()



$temp = (gwmi win32_terminalservicesetting -N "root\cimv2\terminalservices")
$temp.enableNetworkFSS = 1
$temp.put()

Post Reply