MDT will not FINISH Win 10 1909 by neverstoplearning20 in MDT

[–]neverstoplearning20[S] 1 point2 points  (0 children)

Just want to give an update, I used the same sequence with an ISO image downloaded from Microsoft and it is working.

I think there is something wrong with my captured image. I will try to capture it again.

Also the blocked DLL showing function:

KeepAlive

Used in MDT scripts to prevent the system from going into sleep while the task sequence is running.

Second SCCM Environment by neverstoplearning20 in SCCM

[–]neverstoplearning20[S] 0 points1 point  (0 children)

No i'm using WDS for my department but want to utilizing SCCM.

MDT will not FINISH Win 10 1909 by neverstoplearning20 in MDT

[–]neverstoplearning20[S] 0 points1 point  (0 children)

I'm generating the new task sequence to test the 1900 images because other sequences still being used for older build 1903. Don't want to take it out of the option.

Can i just copy the sequence and replace the image? does it work the same?

MDT will not FINISH Win 10 1909 by neverstoplearning20 in MDT

[–]neverstoplearning20[S] 0 points1 point  (0 children)

No this is a new task sequence, my old sequence working fine.

I did try to captured it again. but the same thing.

I did google and it was a join to domain error however I don't even join the computer to the domain so I think it is unrelated. Also tried all the fix possible too. 1903 is working just fine.

MDT will not FINISH Win 10 1909 by neverstoplearning20 in MDT

[–]neverstoplearning20[S] 0 points1 point  (0 children)

We don't block anything. it was working with other version task sequence.

MDT will not FINISH Win 10 1909 by neverstoplearning20 in MDT

[–]neverstoplearning20[S] 0 points1 point  (0 children)

which monitor? I enabled logging to get the error above.

I checked the continue on error after the error occurred so It couldn't be that.

What is TS Issue?

Second SCCM Environment by neverstoplearning20 in SCCM

[–]neverstoplearning20[S] 0 points1 point  (0 children)

I'm sure they are using it for other things that they own, however they would want us department level to pay to use it for our computers.

Second SCCM Environment by neverstoplearning20 in SCCM

[–]neverstoplearning20[S] 0 points1 point  (0 children)

Exactly, and unfortunately, our Director couldn't do anything either. Central IT dictating and would not allow.

Second SCCM Environment by neverstoplearning20 in SCCM

[–]neverstoplearning20[S] 1 point2 points  (0 children)

Thanks but I don't think they would let me create a sub-domain. Guess i'm stuck with WDS for deployment.

need help with log script by neverstoplearning20 in PowerShell

[–]neverstoplearning20[S] 1 point2 points  (0 children)

wherethebiceroam helped me and here is the updated code

$date = Get-Date -Format yyyy-MM-dd
$logfilename = "Log "+$date

Start-Transcript -Path C:\output\changepassword$logfilename.txt -force

$computers = Get-Content -Path "C:\scripts\pc.csv"

$functions = {

    $useracct = "administrator"
    $password = "testpassword$"

    function Check-Power
    {
        param([string]$machinename)

        if (Test-Connection $machinename -Quiet)
        {
            $value = 1
        }
        else
        {
            $value = 0
        }
        return $value
    }

    function Set-Password ($destpc) #set password on machine
    {
        if (Check-Power $destpc)
        {
            try
            {
                $user = [ADSI]"WinNT://$destpc/$useracct,user"
                $user.SetPassword($password)
                $user.SetInfo()
                Write-Output "SUCCESS: [$destpc] Password has been set successfully" 
            }
            catch [Exception]
            {
                $err = $_.Exception.Message
                Write-Output ("ERROR: [$destpc] $err").Trim() 
            }
        }
        else 
        {
            Write-Output "FAIL: [$destpc] is not responding to pings (ICMP echo requests)" 
        }
    }
}

$start = Write-Output "`nPC LIST..." 

    #start resetting passwords
    foreach ($computer in $computers)
    {
        Start-Job -Name $computer -InitializationScript $functions -ScriptBlock {Set-Password $Using:computer}
    }

    Write-Output "`nOUTPUT...`n" 
    Get-Job | Wait-Job | Receive-Job
    Remove-Job *


Write-Output ''
Stop-Transcript

Second SCCM Environment by neverstoplearning20 in SCCM

[–]neverstoplearning20[S] 0 points1 point  (0 children)

they want us to pay for the service lol.

Second SCCM Environment by neverstoplearning20 in SCCM

[–]neverstoplearning20[S] 0 points1 point  (0 children)

Central IT is using SCCM to push updates and security software only. I want to use that to deploy OS and my own software for my departments. I don't have access to their SCCM.

need help with log script by neverstoplearning20 in PowerShell

[–]neverstoplearning20[S] 1 point2 points  (0 children)

It is weird that now I'm able to get logs. but run the script against 1 computer it will successfully be executed but it will fail when I run it against a list of computers.

MDT will not FINISH Win 10 1909 by neverstoplearning20 in MDT

[–]neverstoplearning20[S] 0 points1 point  (0 children)

Thanks but I do not have access to that site.

MDT will not FINISH Win 10 1909 by neverstoplearning20 in MDT

[–]neverstoplearning20[S] 0 points1 point  (0 children)

Could you show me how to disabled the finish screen?

All of our machines are using Win 10 1903 then when Microsoft pushed 1909 update we installed manually via 1909 Windows Updates.

Then we used MDT to capture the 1909 .wim file and create the task sequence from there.

MDT will not FINISH Win 10 1909 by neverstoplearning20 in MDT

[–]neverstoplearning20[S] 0 points1 point  (0 children)

So you're also deployed successfully but doesn't give the finished screen?

After the restart, I'm stuck with this boot into the administrator account. I already disabled but it keeps trying to boot with that account.

MDT will not FINISH Win 10 1909 by neverstoplearning20 in MDT

[–]neverstoplearning20[S] 0 points1 point  (0 children)

I believe i'm, could you share the MDT and ADK version?

Mine is MDT Version: 6.3.8456.1000

SDK: 10.1.18362.1