tri_94 Posted July 9, 2019 Posted July 9, 2019 Hi there just wondering if anyone has a working Task Sequence that I could have a copy of that works for Windows 10 1809. Ideally with domain joining as late as possible? As we have had a few issues with deployment hanging on just a moment, Also we have software that deploys as ps1 scripts and this seems to be installing before the Task Sequence has finished. Thanks Nick
lukeacourt2 Posted October 21, 2019 Posted October 21, 2019 Hi, I can help you with this issue. Quick question Is the issue still occurring ?? Many Thanks Luke A'Court
lukeacourt2 Posted October 21, 2019 Posted October 21, 2019 Hi, Do you have a iso image of 1809 ?? I do have a 1903 image if you wanted this than 1809 which was re released by Microsoft. If not I will supply you with one in the morning when I am back at work on the best internet. Many Thanks Luke A'Court
lukeacourt2 Posted October 22, 2019 Posted October 22, 2019 Hi, Quick question Is the image you trying to deploy is a 64bit which you are trying to deploy ?? Is the software which you have is SCCM (Microsoft System Centre Configuration Center) or is it WDS (Windows Deployment Services)?? Many Thanks Luke A'Court
tri_94 Posted November 7, 2019 Author Posted November 7, 2019 sorry havent been on in a while. Yes 64 bit on Microsoft Deployment Toolkit Thanks Nick
PTL Posted January 9, 2020 Posted January 9, 2020 Hi there just wondering if anyone has a working Task Sequence that I could have a copy of that works for Windows 10 1809. Ideally with domain joining as late as possible? As we have had a few issues with deployment hanging on just a moment, Also we have software that deploys as ps1 scripts and this seems to be installing before the Task Sequence has finished. Thanks Nick For domain joining, the method that works for me is from STEVE PARANKEWICH - Join Computer to Domain with Desired Computer Name and OU. I add this to the very end of my task sequence as a powershell step under State Restore, allowing me to enable/disable the step as required. (ie, do not want to join domain - local computer). Then end off with a "restart computer". $strUser="" $strDomain="" $strPass=ConvertTo-SecureString "" -AsPlainText -Force $Credentials = New-Object System.Management.Automation.PsCredential $strUser, $strPass $StrOu="OU=, DC=" Add-computer -DomainName $strDomain - Credential $Credentials Hope that helps
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now