-
Posts
9250 -
Joined
-
Last visited
-
Days Won
369
Everything posted by anyweb
-
so have you actually tried putting something together yet ? there is a frontends and hta's section here for some ideas... https://www.windows-noob.com/forums/forum/98-frontends-htas-and-web-services/
-
do you have any 3rd party antivirus software that could be causing the download to fail ? or a proxy ? Failed to verify redist file for update C:\Program Files\Microsoft Configuration Manager\CMUStaging\0F11CAA4-7F7F-454B-96D6-75F427D015CE\redist\ConfigMgr.Manifest.cab CONFIGURATION_MANAGER_UPDATE 26.05.2018 19:59:02 26012 (0x659C)
-
Problem deploy OS on computer that has 2 or more disks
anyweb replied to Scripteur's topic in Configuration Manager 2012
(New-Object -COMObject Microsoft.SMS.TSEnvironment).Value('OSDDiskIndex') = $MonDisk.Disk }" returned 0 doesn't look like it's an error, have you tried to dump the variables created to verify it it set's the variable at all ? i'd suggest you pause the task sequence before and after the step to verify -
Pushing out task sequence to new machines
anyweb replied to clush's question in Zero Touch/ZTI, Lite Touch/LTi
hi Craig you should be very careful with required task sequences and instead of limiting to All Systems, make it much safer, for example limit it to All Dell 3620 precisions, or some other small subset of computers, that way if you make a mistake with a query, only those computers will be affected, by limiting to All Systems, if you make a query mistake in that collection and it add's say... All Systems (select * from sms...) then you have just wiped out your entire organization including servers with that required task sequence, secondly, check that the computer you are testing in, is in the collection that is targeted with the task sequence thirdly, is the task sequence deployed to Only Configuration Manager clients, or PXE or something else ? if you want the required ts to start in Windows then you need it to be made available to Only Configuration Manager Clients... cheers niall -
it's failing to talk to the USMT State Migration Point, is that configured ? <![LOG[Error. Status code 500 returned]LOG]!><time="07:22:00.631-480" date="05-21-2018" component="OSDSMPClient" context="" type="0" thread="4276" file="libsmsmessaging.cpp:9551"> <![LOG[Received 1164 byte response.]LOG]!><time="07:22:00.631-480" date="05-21-2018" component="OSDSMPClient" context="" type="0" thread="4276" file="smpclient.cpp:2376"> <![LOG[pReply != NULL, HRESULT=80004005 (e:\nts_sccm_release\sms\client\osdeployment\osdsmpclient\smpclient.cpp,2391)]LOG]!><time="07:22:00.631-480" date="05-21-2018" component="OSDSMPClient" context="" type="0" thread="4276" file="smpclient.cpp:2391"> <![LOG[SMP Root share info response is empty]LOG]!><time="07:22:00.631-480" date="05-21-2018" component="OSDSMPClient" context="" type="3" thread="4276" file="smpclient.cpp:2391"> <![LOG[ClientRequestToSMP::ClientRootShareRequestToSMP failed. error = (0x80004005).]LOG]!><time="07:22:00.631-480" date="05-21-2018" component="OSDSMPClient" context="" type="3" thread="4276" file="smpclient.cpp:2442"> <![LOG[ExecuteRootShareInfoRequest(sRootShareList), HRESULT=80004005 (e:\nts_sccm_release\sms\client\osdeployment\osdsmpclient\smpclient.cpp,1717)]LOG]!><time="07:22:00.631-480" date="05-21-2018" component="OSDSMPClient" context="" type="0" thread="4276" file="smpclient.cpp:1717"> <![LOG[ClientRequestToSMP::DoRequest failed. error = (0x80004005).
-
Failed to install applications during task sequence
anyweb replied to JSlay33's topic in Configuration Manager 2012
it's failing to install the apps, check your appenforce.log to see what it says -
Failed to install applications during task sequence
anyweb replied to JSlay33's topic in Configuration Manager 2012
can you attach the smsts*.log (zip them up) -
Failed to install applications during task sequence
anyweb replied to JSlay33's topic in Configuration Manager 2012
the error means Required management point not found Source: System Center Configuration Manager ----- are you specifying something in relation to MP in the setup windows and configmgr step (in installation properties) ? what do the App*.log files reveal ? -
Configuring BitLocker in Intune - Part 2. Automating Encryption
anyweb replied to anyweb's topic in Microsoft Intune
did you look at the youtube video showing you how to test this ? here it is -
Problem deploy OS on computer that has 2 or more disks
anyweb replied to Scripteur's topic in Configuration Manager 2012
yup works ok for me, so before we go any further, can you explain where you got the error's you posted, and what happens when you run the code pasted directly above this reply on that machine (and not in the task sequence), does it produce an error, or not, or, do you only see an error when you run the script via the task sequence -
it's copied from the package source in the CCMCache or direct from the dp, what issues does this particular computer have ? bad battery ? can't you replace it with a new battery
- 242 replies
-
- 1702
- forced upgrade
-
(and 2 more)
Tagged with:
-
Problem deploy OS on computer that has 2 or more disks
anyweb replied to Scripteur's topic in Configuration Manager 2012
I can't see that you can use it if it produces errors when run during the task sequence, how can it set the variable if it doesn't work, do you see my point ? if I was using a script to set a variable i'd add a logging function to see where it's failing, below is an example function Function LogWrite { Param ([string]$logstring) $a = Get-Date $logstring = $a,$logstring Try { Add-content $Logfile -value $logstring -ErrorAction silentlycontinue } Catch { $logstring="Invalid data encountered" Add-content $Logfile -value $logstring } write-host $logstring } # script starts here $Logfile = "C:\Windows\temp\logfile.log" so for each action in your script use LogWrite "about to do... whatever" so you can see where it fails... once you fix the script, then you can use the variable in the task sequence -
Problem deploy OS on computer that has 2 or more disks
anyweb replied to Scripteur's topic in Configuration Manager 2012
but you pasted above that it's producing an error on line 7 ? -
Problem deploy OS on computer that has 2 or more disks
anyweb replied to Scripteur's topic in Configuration Manager 2012
so you are running an English PowerShell script on a French OS ? that might be part of your problem, "ASSOCIATORS OF" might be something else in French..just a thought have you actually tried running this script on that computer without running it in the task sequence, (New-Object -COMObject Microsoft.SMS.TSEnvironment).Value('OSDDiskIndex') = $MonDisk.Disk }" will fail as no task sequence is running but if your script works (and i'm not sure it is working), then you should get some valid output -
Problem deploy OS on computer that has 2 or more disks
anyweb replied to Scripteur's topic in Configuration Manager 2012
the first thing i'd say is why 2 disks ? and, when you say it's not working efficiently, can you explain what is not working exactly ? what errors are you seeing, and can you zip up and attach the smsts.log ? -
i'd suggest the Dell WinPE driver cab, if you look at the smsprov.log around the time of the failure, does it reveal the problem ?
