Hi Jeffrey,

> In the article I read the following:
> To disable SMBv2 and SMBv3 on the SMB CLIENT, run the following commands:
> sc.exe config lanmanworkstation depend= bowser/mrxsmb10/nsi
> sc.exe config mrxsmb20 start= disabled
> Can this be done with SetupBuilder?

Yes. Just use the "Run Command Line..." or "Run Program..." script
functions.

> Then there's something new about Windows 8 and Windows Server 2012:
> To disable SMBv2 and SMBv3 on the SMB SERVER, run the following cmdlet:
> Set-SmbServerConfiguration -EnableSMB2Protocol $false
> Can this be done with SetupBuilder?

See above. A "cmdlet" is executed in the PowerShell process. Call
PowerShell.exe to start a Windows PowerShell session and execute your
cmdlet:

http://technet.microsoft.com/en-us/l.../hh847736.aspx

Friedrich