MSEndpointMgr / ModernDriverManagement

Official repo of Modern Driver Management from MSEndpointMgr.com
https://www.msendpointmgr.com
MIT License
132 stars 77 forks source link

Cannot get this to work. #254

Closed beaswax19816 closed 1 year ago

beaswax19816 commented 1 year ago

Have everything setup but continue to get a task sequence error in windows pe. . Fails with a value of 1.

-BareMetal -Endpoint "SCCMCB.archildrens.org" -TargetOSName "Windows 10" -TargetOSVersion "22H2" -OSVersionFallback or -BareMetal -Endpoint 'SCCMCB.archildrens.org' -TargetOSName 'Windows 10' -TargetOSVersion '22H2' -OSVersionFallback

I've tried both single and double quotes and it still doesnt work. I have the driver packages setup in SCCM and have created the account but I cannot get past it failing everytime.

Powershell modules have been added to the boot image. I am also using the latest version of the script.

yogiwan commented 1 year ago

look in your AppyDriverPackage.log what specific error occurs. I had a similar issue with the problem beeing the script not able to match "Windows 10".

If this is the same error, I fixed this by setting double quotes in the command-line: -BareMetal -Endpoint 'SCCMCB.archildrens.org' -TargetOSName "'Windows 10'" -TargetOSVersion '22H2' -OSVersionFallback

maybe this helps

beaswax19816 commented 1 year ago

Thank you! Those pesky quotes always get me.