When changes are made to the Checksum offloads, the NICs reset themselves and I'm losing connectivity to the deployment share during the deployment process (LiteTouch). It happens during a custom PowerShell script I'm running in the Task Sequence
after "Tattoo".
PowerShell Script:
Disable-NetAdapterChecksumOffload -Name * -IpIPv4
Disable-NetAdapterChecksumOffload -Name * -TcpIPv4
Disable-NetAdapterChecksumOffload -Name * -UdpIPv4
Disable-NetAdapterChecksumOffload -Name * -TcpIPv6
Disable-NetAdapterChecksumOffload -Name * -UdpIPv6
Disable-NetAdapterLso -Name * -IPv4
Disable-NetAdapterLso -Name * -IPv6
Disable-NetAdapterRss -Name *
Here are the errors from the BDD.log (sorry couldn't get the _SMSTaskSequence.log)
ZTIPowerShell processing completed successfully. ZTIPowerShell 8/25/2014 2:27:28 PM 0 (0x0000)
Command completed, return code = -2147467259 LiteTouch 8/25/2014 2:27:29 PM 0 (0x0000)
Litetouch deployment failed, Return Code = -2147467259 0x80004005 LiteTouch 8/25/2014 2:27:29 PM 0 (0x0000)
For more information, consult the task sequencer log ...\SMSTS.LOG. LiteTouch 8/25/2014 2:27:29 PM 0 (0x0000)
Property RetVal is now = -2147467259 LiteTouch 8/25/2014 2:27:29 PM 0 (0x0000)
Unable to copy log to the network as no SLShare value was specified. LiteTouch 8/25/2014 2:27:29 PM 0 (0x0000)
What I was thinking about trying was adding a few lines to the end of my script:
1. PING 1.1.1.1 -n 1 -w 30000 >NUL
This would give the server 30 seconds to right itself after resetting the NICs
2. net use command to remap the share.
Two questions regarding re-mapping the share.
1. I'm assuming this will run as Administrator token. Will this be an issue for continued deployment?
2. At the beginning of the deployment process the Tech has to enter his/her credentials to access the deployment share to begin the deployment process. Are those the credentials I need to continue using, or does MDT use some other credentials
to access the deployment share that far into the deployment process (during state restore phase)?
Thank you for taking time to read my post.
-Cheers!