Jump to content

Recommended Posts

Posted

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

  • 3 months later...
Posted

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

Posted

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

  • 3 weeks later...
  • 2 months later...
Posted
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

  • 2 weeks later...

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 account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...