Quantcast
Channel: Configuration Manager 2012 - Operating System Deployment forum
Viewing all 9126 articles
Browse latest View live

unable to add operating system upgrade package - get error "The specified path does not contain a valid operating system or you do not have permission to access it. Specify a valid path.

$
0
0

Trying to get Windows 10 1803 added to operating system image and upgrade package but receiving an error when I get to part to add to the upgrade package. 

SCCM is running version 1802 plus hotfix kb 4339794 & kb 4163547.  

ADK was upgraded; boot image shows updated OS 10.0.17134.1.  I was able to add the operating system wim file without error but when I attempt to point to setup.exe for the operating system upgrade package I get the error.  The operating system was distributed to the DP and shows green.  What am I missing?

iso file downloaded from https://www.microsoft.com/en-us/software-download/windows10

log file shows:

Description = "Failed to get the image property from the source WIM file due to error 80070002";
ErrorCode = 2147942402;
File = "..\\sspimagepackage.cpp";
Line = 593;
Operation = "ExecMethod";
ParameterInfo = "SMS_OperatingSystemInstallPackage";
ProviderName = "WinMgmt";
StatusCode = 2147749889;

If I click on the OS properties i imported, wrong version is showing.  shows Windows PE.  How do I get the correct ISO that will have Windows 10 Pro as an option??


Thank you,

Melissa


Successful Wireless Imaging

$
0
0

Figured I would post my findings for others who desire wireless imaging.
"Where there's a will, there's an IT guy to find a way."

After months of hunting and searching for solutions and coming up with nothing, I found a means of Task Sequence deployment over wireless and decided to share with the community. Note that I have yet to discover a means of PXE booting over wireless, but Task Sequence deployment on bootable devices is a good start.  

The first step is export the wireless profile of your choice to an XML and save it for later—WPA2 is what we use for this hidden network. I called my exported profile “wifiprofile.xml”—original, I know.

Next you’ll mount the ISO for Windows 10 1607 (or newer) and extract the sources\image.wim and place it in your directory of choice for DISM work—mine is C:\TEMP and all commands referenced below will follow that convention.

I then create C:\TEMP\MOUNT and C:\TEMP\winre folders.

I have compiled information from various other sources across the internet that I wish I could cite, but here are the commands to execute in order to extract the WinRE.wim file (which supports wireless imaging), inject my wireless profile, then create a boot(able) image from that:

"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\DISM\dism.exe" /Mount-Image /ImageFile:C:\TEMP\install.wim /Index:1 /MountDir:C:\temp\mount

copy /y “C:\TEMP\mount\windows\windows\system32\recovery\winre.wim” C:\TEMP\

attrib -s -h C:\temp\winre.wim

Dism /Mount-Image /ImageFile:c:\temp\winre.wim /Index:1 /MountDir:C:\temp\winre

"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\DISM\dism.exe" /Mount-Image /ImageFile:c:\temp\winre.wim /Index:1 /MountDir:C:\temp\winre

attrib -R c:\temp\winre\windows\system32\winpeshl.ini

copy /y C:\temp\MOUNT\windows\system32\dmcmnutils.dll C:\temp\winre\windows\system32\

copy /y C:\temp\MOUNT\windows\system32\mdmpostprocessevaluator.dll c:\temp\winre\windows\system32\

copy /y C:\temp\MOUNT\windows\system32\mdmregistration.dll c:\temp\winre\windows\system32\

"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\DISM\dism.exe" /Unmount-Image /MountDir:C:\temp\MOUNT /discard

Now you can copy your wifiprofile.xml into the C:\temp\winre\windows\ folder which we will commit in the next few steps. You’ll see why we need to inject the wireless profile into the image—specifically in the Windows directory—In order to call on its variable location throughout the deployment. You will also want to take your system image and mount it in like manner to inject the wifiprofile.xml into its Windows directory. 

Commit the changes:    

"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\DISM\dism.exe" /Image:c:\temp\winre /Cleanup-Image /StartComponentCleanup /ResetBase"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\DISM\dism.exe" /Unmount-Image /MountDir:C:\TEMP\winre /commit"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\DISM\dism.exe" /Export-Image /SourceImageFile:c:\temp\winre.wim /SourceIndex:1 /DestinationImageFile:c:\temp\winpe-wifi.wim

I know it looks sloppy, but it works. You've just created a WiFi-enabled boot image and successfully loaded the WiFi profile into the %windir% folder. When you're all done you'll have a new "winpe-wifi.wim" that you can then load into SCCM.

Add the new boot image to SCCM but before you distribute it, edit the properties. You'll want to add any additional (wireless) drivers to your image here and configure a prestart command—the most important part!

The prestart command I use is: 

cmd /c net start wlansvc & cmd /c netsh wlan add profile filename=%windir%\wifiprofile.xml & cmd /c netsh wlan connect profile=YOURs ssid=YOURs

The result of the above command is starting the WLAN service, importing the WiFi profile (from our variable location) then connecting to the provided WiFi network.

I then perform a "run command line" step of the above commands in the Task Sequence after every reboot which ensures we stay connected during the whole imaging process. NOTE: This is why your wifiprofile.xml MUST be in both you boot.wim and your image.wim in order to be called upon after WinRE has exited.      

Using this process, the PC will cache the WinRE boot image while booted in Windows, reboot at the assigned time and connect to WiFi to run the Task Sequence. For devices that won't boot and need imaging from a cold start, I created an ISO of the Task Sequence Media (with just the boot image) with the unattended flag enabled and the same prestart command. Load that ISO onto a thumb drive and staff at remote campuses can boot to the thumb drive and the Task Sequence will being automatically over wireless.

I have tested this on a USB boot and from the desktop. OS upgrades or clean install-task sequences can be performed ether way. I won’t sugar-coat it, the process takes a while depending on the size of the task sequence. My standard deployment with all the bells and whistles takes 6 PCs 10 hours over wireless so ensure your maintenance windows are long enough to accommodate and your networking team isn’t planning any changes that night.

The key to success was using WinRE rather than WinPE as Windows Recover Environment supports wireless imaging for Surface Pro devices to restore from the cloud. The last task sequence step is to remove the wifiprofile.xml from %windir% as itis stored in plain text.

Not sure why Microsoft has made this so difficult but there it is, wireless imaging with SCCM. 


Task Sequence steps only run when there is an user logged on

$
0
0

Hi,

I have a TS that encrypt laptop's hard drive using Bitlocker

The TS requires a few reboots, and I want to use the script that we created to prompt the user for reboot instead of using the default reboot TS task

That script will only need to run when there is someone logged in

my question is, is there a TS variable or something that can check if there is an user logged in?

Thanks

Andy

Windows 10 1903 - Apply Driver Package

$
0
0

Hello, 

i've noticed some strange behavior on Windows 10 x64 - v1903 when applying driver packages in TS.

SCCM task sequence step Apply driver package successfully installs drivers for certain computer model, but when deployment is finished and i sign in to Windows, open device manager, some device drivers are not shown as installed (GPU, ETH..).

Then if i right click on the device and select update drivers it starts installing them from local Driver repository (so the drivers are there). 

WHY? how to fix this?

Thank you!

 

Static IP during OSD_WinPE

$
0
0

Hi,

SCCM Ver: 1902

How can I capture the IP Address, SMask, Gateway and DNS from WinPE ? Does Capture Network Settings work in WinPE ? because its failing for me.

example i put all this info in the Configure Static IP Network Settings in WinPE, but when all the tasks finish and log into windows the values are not set in the network adapter.

Please help

thanks,


Static IP during OSD_WinPE - Not Working

$
0
0

Hi,

SCCM Ver: 1902

How can I capture the IP Address, SMask, Gateway and DNS from WinPE ? Does Capture Network Settings work in WinPE ? because its failing for me.

example i put all this info in the Configure Static IP Network Settings in WinPE, but when all the tasks finish and log into windows the values are not set in the network adapter.

Please help

thanks,




pxe-e53 no boot filename - PXE not working

$
0
0

Hello

Thank you for talking the time reading my post, any help would be wonderful and appreciated😊

I am setting up a new SCCM R2 test lab and have hit a confusing issue.

My environment

SCCM SRV 10.0.0.10

DC (DHCP) 10.0.0.2

Both running Windows 2012 R2

Issue

When I boot a new computer (that I have added to SCCM and to my build collection that I have advertised my task sequence) Iget pxe-e53 no boot filename on the PC

 This is my SMSPXE log - as you can see its seeing one advertisement - but the IP address seem to be 0.0.0.0 

is that normal.  I dont think I need an IP helper since everything is on the same subnet. 

============> Received from client:    SMSPXE              12/02/2020 20:07:23       7072 (0x1BA0)

 Operation: BootRequest (1)  Addr type: 1 Addr Len: 6 Hop Count: 0 ID: 18E8B22A

 Sec Since Boot: 4 Client IP: 000.000.000.000 Your IP: 000.000.000.000 Server IP: 000.000.000.000 Relay Agent IP: 000.000.000.000

 Addr: 00:0c:29:b2:e8:18:

 Magic Cookie: 63538263

 Options:

  Type=53 Msg Type: 1=Discover

  Type=55 Param Request List: 01020305060b0c0d0f1011122b363c438081828384858687

  Type=57 Max Msg Size: 04ec

  Type=97 UUID: 00564dcbe74aa80f374a71c68aa0b2e818

  Type=93 Client Arch: Intel x86PC

  Type=94 UNDI: 010201

  Type=60 ClassId: PXEClient:Arch:00000:UNDI:002001    SMSPXE              12/02/2020 20:07:23       7072 (0x1BA0)

Prioritizing local MP http://Gensys-SCCMSRV.genericsystem.test.             SMSPXE              12/02/2020 20:07:23       7128 (0x1BD8)

Not in SSL.           SMSPXE              12/02/2020 20:07:23       7128 (0x1BD8)

Not in SSL.           SMSPXE              12/02/2020 20:07:23       7128 (0x1BD8)

Client lookup reply: <ClientIDReply><Identification Unknown="0" DuplicateSMBIOS="0" DuplicateMACAddress="0" ItemKey="16777227" ServerName=""><Machine><ClientID/><NetbiosName/></Machine></Identification></ClientIDReply>

               SMSPXE              12/02/2020 20:07:23       7128 (0x1BD8)

00:0C:29:B2:E8:18, E7CB4D56-A84A-370F-4A71-C68AA0B2E818: Device is in the database.           SMSPXE               12/02/2020 20:07:23       7128 (0x1BD8)

Prioritizing local MP http://Gensys-SCCMSRV.genericsystem.test.             SMSPXE              12/02/2020 20:07:23       7128 (0x1BD8)

Not in SSL.           SMSPXE              12/02/2020 20:07:23       7128 (0x1BD8)

Request using architecture 0.      SMSPXE              12/02/2020 20:07:23       7128 (0x1BD8)

Not in SSL.           SMSPXE              12/02/2020 20:07:23       7128 (0x1BD8)

Client boot action reply: <ClientIDReply><Identification Unknown="0" DuplicateSMBIOS="0" DuplicateMACAddress="0" ItemKey="16777227" ServerName=""><Machine><ClientID/><NetbiosName/></Machine></Identification><PXEBootAction LastPXEAdvertisementID="" LastPXEAdvertisementTime="" OfferID="" OfferIDTime="" PkgID="" PackageVersion="" PackagePath="" BootImageID="" Mandatory=""/></ClientIDReply>

               SMSPXE              12/02/2020 20:07:23       7128 (0x1BD8)

Request retry.   SMSPXE              12/02/2020 20:07:23       7128 (0x1BD8)

Not in SSL.           SMSPXE              12/02/2020 20:07:23       7128 (0x1BD8)

Client boot action reply: <ClientIDReply><Identification Unknown="0" DuplicateSMBIOS="0" DuplicateMACAddress="0" ItemKey="16777227" ServerName=""><Machine><ClientID>GUID:4C944E57-C69E-4E74-BEF1-19DDB78CF19C</ClientID><NetbiosName/></Machine></Identification><PXEBootAction LastPXEAdvertisementID="" LastPXEAdvertisementTime="" OfferID="TSB20001" OfferIDTime="12/02/2020 15:37:00" PkgID="TSB0000A" PackageVersion="" PackagePath="http://Gensys-SCCMSRV.genericsystem.test/SMS_DP_SMSPKG$/TSB00003" BootImageID="TSB00003" Mandatory="0"/></ClientIDReply>

               SMSPXE              12/02/2020 20:07:23       7128 (0x1BD8)

00:0C:29:B2:E8:18, E7CB4D56-A84A-370F-4A71-C68AA0B2E818: found optional advertisement TSB20001               SMSPXE              12/02/2020 20:07:23       7128 (0x1BD8)

 Operation: BootReply (2)  Addr type: 1 Addr Len: 6 Hop Count: 0 ID: 18E8B22A

 Sec Since Boot: 4 Client IP: 000.000.000.000 Your IP: 000.000.000.000 Server IP: 010.000.000.010 Relay Agent IP: 000.000.000.000

 Addr: 00:0c:29:b2:e8:18:

 Magic Cookie: 63538263

 Options:

  Type=53 Msg Type: 2=Offer

  Type=54 Svr id: 010.000.000.010

  Type=97 UUID: 00564dcbe74aa80f374a71c68aa0b2e818

  Type=60 ClassId: PXEClient       SMSPXE              12/02/2020 20:07:23       7128 (0x1BD8)

============> Received from client:    SMSPXE              12/02/2020 20:07:25       7072 (0x1BA0)

 Operation: BootRequest (1)  Addr type: 1 Addr Len: 6 Hop Count: 0 ID: 18E8B22B

 Sec Since Boot: 6 Client IP: 000.000.000.000 Your IP: 000.000.000.000 Server IP: 000.000.000.000 Relay Agent IP: 000.000.000.000

 Addr: 00:0c:29:b2:e8:18:

 Magic Cookie: 63538263

 Options:

  Type=53 Msg Type: 1=Discover

  Type=55 Param Request List: 01020305060b0c0d0f1011122b363c438081828384858687

  Type=57 Max Msg Size: 04ec

  Type=97 UUID: 00564dcbe74aa80f374a71c68aa0b2e818

  Type=93 Client Arch: Intel x86PC

  Type=94 UNDI: 010201

  Type=60 ClassId: PXEClient:Arch:00000:UNDI:002001    SMSPXE              12/02/2020 20:07:25       7072 (0x1BA0)

Prioritizing local MP http://Gensys-SCCMSRV.genericsystem.test.             SMSPXE              12/02/2020 20:07:25       7128 (0x1BD8)

Not in SSL.           SMSPXE              12/02/2020 20:07:25       7128 (0x1BD8)

Request using architecture 0.      SMSPXE              12/02/2020 20:07:25       7128 (0x1BD8)

Not in SSL.           SMSPXE              12/02/2020 20:07:25       7128 (0x1BD8)

Client boot action reply: <ClientIDReply><Identification Unknown="0" DuplicateSMBIOS="0" DuplicateMACAddress="0" ItemKey="16777227" ServerName=""><Machine><ClientID/><NetbiosName/></Machine></Identification><PXEBootAction LastPXEAdvertisementID="" LastPXEAdvertisementTime="" OfferID="" OfferIDTime="" PkgID="" PackageVersion="" PackagePath="" BootImageID="" Mandatory=""/></ClientIDReply>

               SMSPXE              12/02/2020 20:07:25       7128 (0x1BD8)

Request retry.   SMSPXE              12/02/2020 20:07:25       7128 (0x1BD8)

Not in SSL.           SMSPXE              12/02/2020 20:07:25       7128 (0x1BD8)

Client boot action reply: <ClientIDReply><Identification Unknown="0" DuplicateSMBIOS="0" DuplicateMACAddress="0" ItemKey="16777227" ServerName=""><Machine><ClientID>GUID:4C944E57-C69E-4E74-BEF1-19DDB78CF19C</ClientID><NetbiosName/></Machine></Identification><PXEBootAction LastPXEAdvertisementID="" LastPXEAdvertisementTime="" OfferID="TSB20001" OfferIDTime="12/02/2020 15:37:00" PkgID="TSB0000A" PackageVersion="" PackagePath="http://Gensys-SCCMSRV.genericsystem.test/SMS_DP_SMSPKG$/TSB00003" BootImageID="TSB00003" Mandatory="0"/></ClientIDReply>

               SMSPXE              12/02/2020 20:07:25       7128 (0x1BD8)

00:0C:29:B2:E8:18, E7CB4D56-A84A-370F-4A71-C68AA0B2E818: found optional advertisement TSB20001               SMSPXE              12/02/2020 20:07:25       7128 (0x1BD8)

 Operation: BootReply (2)  Addr type: 1 Addr Len: 6 Hop Count: 0 ID: 18E8B22B

 Sec Since Boot: 6 Client IP: 000.000.000.000 Your IP: 000.000.000.000 Server IP: 010.000.000.010 Relay Agent IP: 000.000.000.000

 Addr: 00:0c:29:b2:e8:18:

 Magic Cookie: 63538263

 Options:

  Type=53 Msg Type: 2=Offer

  Type=54 Svr id: 010.000.000.010

  Type=97 UUID: 00564dcbe74aa80f374a71c68aa0b2e818

  Type=60 ClassId: PXEClient       SMSPXE              12/02/2020 20:07:25       7128 (0x1BD8)

============> Received from client:    SMSPXE              12/02/2020 20:07:29       7072 (0x1BA0)

 Operation: BootRequest (1)  Addr type: 1 Addr Len: 6 Hop Count: 0 ID: 18E8B22C

 Sec Since Boot: 10 Client IP: 000.000.000.000 Your IP: 000.000.000.000 Server IP: 000.000.000.000 Relay Agent IP: 000.000.000.000

 Addr: 00:0c:29:b2:e8:18:

 Magic Cookie: 63538263

 Options:

  Type=53 Msg Type: 1=Discover

  Type=55 Param Request List: 01020305060b0c0d0f1011122b363c438081828384858687

  Type=57 Max Msg Size: 04ec

  Type=97 UUID: 00564dcbe74aa80f374a71c68aa0b2e818

  Type=93 Client Arch: Intel x86PC

  Type=94 UNDI: 010201

  Type=60 ClassId: PXEClient:Arch:00000:UNDI:002001    SMSPXE              12/02/2020 20:07:29       7072 (0x1BA0)

Prioritizing local MP http://Gensys-SCCMSRV.genericsystem.test.             SMSPXE              12/02/2020 20:07:29       7128 (0x1BD8)

Not in SSL.           SMSPXE              12/02/2020 20:07:29       7128 (0x1BD8)

Request using architecture 0.      SMSPXE              12/02/2020 20:07:29       7128 (0x1BD8)

Not in SSL.           SMSPXE              12/02/2020 20:07:29       7128 (0x1BD8)

Client boot action reply: <ClientIDReply><Identification Unknown="0" DuplicateSMBIOS="0" DuplicateMACAddress="0" ItemKey="16777227" ServerName=""><Machine><ClientID/><NetbiosName/></Machine></Identification><PXEBootAction LastPXEAdvertisementID="" LastPXEAdvertisementTime="" OfferID="" OfferIDTime="" PkgID="" PackageVersion="" PackagePath="" BootImageID="" Mandatory=""/></ClientIDReply>

               SMSPXE              12/02/2020 20:07:29       7128 (0x1BD8)

Request retry.   SMSPXE              12/02/2020 20:07:29       7128 (0x1BD8)

Not in SSL.           SMSPXE              12/02/2020 20:07:29       7128 (0x1BD8)

Client boot action reply: <ClientIDReply><Identification Unknown="0" DuplicateSMBIOS="0" DuplicateMACAddress="0" ItemKey="16777227" ServerName=""><Machine><ClientID>GUID:4C944E57-C69E-4E74-BEF1-19DDB78CF19C</ClientID><NetbiosName/></Machine></Identification><PXEBootAction LastPXEAdvertisementID="" LastPXEAdvertisementTime="" OfferID="TSB20001" OfferIDTime="12/02/2020 15:37:00" PkgID="TSB0000A" PackageVersion="" PackagePath="http://Gensys-SCCMSRV.genericsystem.test/SMS_DP_SMSPKG$/TSB00003" BootImageID="TSB00003" Mandatory="0"/></ClientIDReply>

               SMSPXE              12/02/2020 20:07:29       7128 (0x1BD8)

00:0C:29:B2:E8:18, E7CB4D56-A84A-370F-4A71-C68AA0B2E818: found optional advertisement TSB20001               SMSPXE              12/02/2020 20:07:29       7128 (0x1BD8)

 Operation: BootReply (2)  Addr type: 1 Addr Len: 6 Hop Count: 0 ID: 18E8B22C

 Sec Since Boot: 10 Client IP: 000.000.000.000 Your IP: 000.000.000.000 Server IP: 010.000.000.010 Relay Agent IP: 000.000.000.000

 Addr: 00:0c:29:b2:e8:18:

 Magic Cookie: 63538263

 Options:

  Type=53 Msg Type: 2=Offer

  Type=54 Svr id: 010.000.000.010

  Type=97 UUID: 00564dcbe74aa80f374a71c68aa0b2e818

  Type=60 ClassId: PXEClient       SMSPXE              12/02/2020 20:07:29       7128 (0x1BD8)

============> Received from client:    SMSPXE              12/02/2020 20:07:37       7072 (0x1BA0)

 Operation: BootRequest (1)  Addr type: 1 Addr Len: 6 Hop Count: 0 ID: 18E8B22D

 Sec Since Boot: 18 Client IP: 000.000.000.000 Your IP: 000.000.000.000 Server IP: 000.000.000.000 Relay Agent IP: 000.000.000.000

 Addr: 00:0c:29:b2:e8:18:

 Magic Cookie: 63538263

 Options:

  Type=53 Msg Type: 1=Discover

  Type=55 Param Request List: 01020305060b0c0d0f1011122b363c438081828384858687

  Type=57 Max Msg Size: 04ec

  Type=97 UUID: 00564dcbe74aa80f374a71c68aa0b2e818

  Type=93 Client Arch: Intel x86PC

  Type=94 UNDI: 010201

  Type=60 ClassId: PXEClient:Arch:00000:UNDI:002001    SMSPXE              12/02/2020 20:07:37       7072 (0x1BA0)

Prioritizing local MP http://Gensys-SCCMSRV.genericsystem.test.             SMSPXE              12/02/2020 20:07:37       7128 (0x1BD8)

Not in SSL.           SMSPXE              12/02/2020 20:07:37       7128 (0x1BD8)

Request using architecture 0.      SMSPXE              12/02/2020 20:07:37       7128 (0x1BD8)

Not in SSL.           SMSPXE              12/02/2020 20:07:37       7128 (0x1BD8)

Client boot action reply: <ClientIDReply><Identification Unknown="0" DuplicateSMBIOS="0" DuplicateMACAddress="0" ItemKey="16777227" ServerName=""><Machine><ClientID/><NetbiosName/></Machine></Identification><PXEBootAction LastPXEAdvertisementID="" LastPXEAdvertisementTime="" OfferID="" OfferIDTime="" PkgID="" PackageVersion="" PackagePath="" BootImageID="" Mandatory=""/></ClientIDReply>

               SMSPXE              12/02/2020 20:07:37       7128 (0x1BD8)

Request retry.   SMSPXE              12/02/2020 20:07:37       7128 (0x1BD8)

Not in SSL.           SMSPXE              12/02/2020 20:07:37       7128 (0x1BD8)

Client boot action reply: <ClientIDReply><Identification Unknown="0" DuplicateSMBIOS="0" DuplicateMACAddress="0" ItemKey="16777227" ServerName=""><Machine><ClientID>GUID:4C944E57-C69E-4E74-BEF1-19DDB78CF19C</ClientID><NetbiosName/></Machine></Identification><PXEBootAction LastPXEAdvertisementID="" LastPXEAdvertisementTime="" OfferID="TSB20001" OfferIDTime="12/02/2020 15:37:00" PkgID="TSB0000A" PackageVersion="" PackagePath="http://Gensys-SCCMSRV.genericsystem.test/SMS_DP_SMSPKG$/TSB00003" BootImageID="TSB00003" Mandatory="0"/></ClientIDReply>

               SMSPXE              12/02/2020 20:07:37       7128 (0x1BD8)

00:0C:29:B2:E8:18, E7CB4D56-A84A-370F-4A71-C68AA0B2E818: found optional advertisement TSB20001               SMSPXE              12/02/2020 20:07:37       7128 (0x1BD8)

 Operation: BootReply (2)  Addr type: 1 Addr Len: 6 Hop Count: 0 ID: 18E8B22D

 Sec Since Boot: 18 Client IP: 000.000.000.000 Your IP: 000.000.000.000 Server IP: 010.000.000.010 Relay Agent IP: 000.000.000.000

 Addr: 00:0c:29:b2:e8:18:

 Magic Cookie: 63538263

 Options:

  Type=53 Msg Type: 2=Offer

  Type=54 Svr id: 010.000.000.010

  Type=97 UUID: 00564dcbe74aa80f374a71c68aa0b2e818

  Type=60 ClassId: PXEClient       SMSPXE              12/02/2020 20:07:37       7128 (0x1BD8)


The AND expression is evaluated to be false

$
0
0

I've created an SCCM task sequence with MDT functionality and I have a command line entry to import a power configuration only if the computer is a laptop.  This works properly in MDT but I'm having an issue with the SCCM TS.  It evaluates the variable correctly but then at the end it says "The AND expression is evaluated to be false" and doesn't import the power configuration. 

I've included the log and images of the cmd line.

Any help would be appreciated.

Execution of the instruction (Copy AOT Laptop Power Configuration) has been skipped	TSManager	2/13/2020 12:26:58 PM	5652 (0x1614)
Set a global environment variable _SMSTSLastActionRetryCount=0	TSManager	2/13/2020 12:26:58 PM	5652 (0x1614)
Start executing an instruction. Instruction name: Import Power Scheme. Instruction pointer: 89	TSManager	2/13/2020 12:26:58 PM	5652 (0x1614)
Set a global environment variable _SMSTSCurrentActionName=Import Power Scheme	TSManager	2/13/2020 12:26:58 PM	5652 (0x1614)
Set a global environment variable _SMSTSNextInstructionPointer=89	TSManager	2/13/2020 12:26:58 PM	5652 (0x1614)
Set a local default variable SMSTSDisableWow64Redirection	TSManager	2/13/2020 12:26:58 PM	5652 (0x1614)
Set a local default variable _SMSTSRunCommandLineAsUser	TSManager	2/13/2020 12:26:58 PM	5652 (0x1614)
Set a global environment variable _SMSTSLogPath=C:\WINDOWS\CCM\Logs\SMSTSLog	TSManager	2/13/2020 12:26:58 PM	5652 (0x1614)
Evaluating an AND expression	TSManager	2/13/2020 12:26:58 PM	5652 (0x1614)
Evaluating a variable condition expression	TSManager	2/13/2020 12:26:58 PM	5652 (0x1614)
Variable = islaptop	TSManager	2/13/2020 12:26:58 PM	5652 (0x1614)
Value = true	TSManager	2/13/2020 12:26:58 PM	5652 (0x1614)
Operator = equals	TSManager	2/13/2020 12:26:58 PM	5652 (0x1614)
Expand a string: equals	TSManager	2/13/2020 12:26:58 PM	5652 (0x1614)
Expand a string: islaptop	TSManager	2/13/2020 12:26:58 PM	5652 (0x1614)
Expand a string: true	TSManager	2/13/2020 12:26:58 PM	5652 (0x1614)
The variable condition expression is evaluated to be FALSE	TSManager	2/13/2020 12:26:58 PM	5652 (0x1614)
The AND expression is evaluated to be FALSE	TSManager	2/13/2020 12:26:58 PM	5652 (0x1614)
The action (Import Power Scheme) has been skipped because the condition is evaluated to be false	TSManager	2/13/2020 12:26:58 PM	5652 (0x1614)



Enabling HTTPS on MP and DP breaks PXE

$
0
0

I have configured a client auth cert issued by our CA on all of our PXE servers. I have enabled HTTPS on the MP and on the DP. I have even created a webserver cert and bound ssl on the PXE DP with the same CA generated cert. I have reinstalled the PXE on a DP, redistributed the boot image. still getting the same errors.

<code>

MACADDRESS, DD097655-B3BB-11E6-A2D4-3BB2E60260BB: Not serviced.    SMSPXE    2/14/2020 5:05:54 PM    3692 (0x0E6C)
============> Received from client:    SMSPXE    2/14/2020 5:05:54 PM    6292 (0x1894)
 Operation: BootRequest (1)  Addr type: 1 Addr Len: 6 Hop Count: 0 ID: 10C2D1FF
 Sec Since Boot: 0 Client IP: 266.266.266.266 Your IP: 000.000.000.000 Server IP: 000.000.000.000 Relay Agent IP: 000.000.000.000
 Addr: c8:d3:ff:d1:c2:10:
 Magic Cookie: 63538263
 Options:
  Type=53 Msg Type: 3=Request
  Type=60 ClassId: PXEClient
  Type=97 UUID: 00557609ddbbb3e611a2d43bb2e60260bb
  Type=93 Client Arch: Intel x86PC
  Type=250 0c01010d0208000e010001020006ff
  Type=55 Param Request List: 03013c8081828384858687    SMSPXE    2/14/2020 5:05:54 PM    6292 (0x1894)
Using values from 'AllowedMPs' key.    SMSPXE    2/14/2020 5:05:54 PM    3692 (0x0E6C)
Prioritizing local MP contosoSCDP01.contoso.com.    SMSPXE    2/14/2020 5:05:54 PM    3692 (0x0E6C)
Not in SSL    SMSPXE    2/14/2020 5:05:54 PM    3692 (0x0E6C)
RequestMPKeyInformation: Send() failed.    SMSPXE    2/14/2020 5:05:54 PM    3692 (0x0E6C)
Unsuccessful in getting MP key information. 80004005.    SMSPXE    2/14/2020 5:05:54 PM    3692 (0x0E6C)
PXE::MP_InitializeTransport failed; 0x80004005    SMSPXE    2/14/2020 5:05:54 PM    3692 (0x0E6C)
Not in SSL    SMSPXE    2/14/2020 5:05:54 PM    3692 (0x0E6C)
RequestMPKeyInformation: Send() failed.    SMSPXE    2/14/2020 5:05:54 PM    3692 (0x0E6C)
Unsuccessful in getting MP key information. 80004005.    SMSPXE    2/14/2020 5:05:54 PM    3692 (0x0E6C)
PXE::MP_InitializeTransport failed; 0x80004005    SMSPXE    2/14/2020 5:05:54 PM    3692 (0x0E6C)
PXE::MP_LookupDevice failed; 0x80070490    SMSPXE    2/14/2020 5:05:54 PM    3692 (0x0E6C)
Using values from 'AllowedMPs' key.    SMSPXE    2/14/2020 5:05:54 PM    3692 (0x0E6C)
Prioritizing local MP contosoSCDP01.contoso.com.    SMSPXE    2/14/2020 5:05:54 PM    3692 (0x0E6C)
Not in SSL    SMSPXE    2/14/2020 5:05:54 PM    3692 (0x0E6C)
RequestMPKeyInformation: Send() failed.    SMSPXE    2/14/2020 5:05:54 PM    3692 (0x0E6C)
Unsuccessful in getting MP key information. 80004005.    SMSPXE    2/14/2020 5:05:54 PM    3692 (0x0E6C)
PXE::MP_InitializeTransport failed; 0x80004005    SMSPXE    2/14/2020 5:05:54 PM    3692 (0x0E6C)
Not in SSL    SMSPXE    2/14/2020 5:05:54 PM    3692 (0x0E6C)
RequestMPKeyInformation: Send() failed.    SMSPXE    2/14/2020 5:05:54 PM    3692 (0x0E6C)
Unsuccessful in getting MP key information. 80004005.    SMSPXE    2/14/2020 5:05:54 PM    3692 (0x0E6C)
PXE::MP_InitializeTransport failed; 0x80004005    SMSPXE    2/14/2020 5:05:54 PM    3692 (0x0E6C)
PXE::MP_ReportStatus failed; 0x80070490    SMSPXE    2/14/2020 5:05:54 PM    3692 (0x0E6C)
PXE Provider failed to process message.
Element not found. (Error: 80070490; Source: Windows)    SMSPXE    2/14/2020 5:05:54 PM    3692 (0x0E6C)
C8:D3:FF:D1:C2:10, DD097655-B3BB-11E6-A2D4-3BB2E60260BB: Not serviced.    SMSPXE    2/14/2020 5:05:54 PM    3692 (0x0E6C)
</code>

SCCM CB -Windows 10 1809 Inplace TS upgrade error failed with (0x800703fa)

$
0
0

SMSTS.log

Windows Upgrade Setup progress: 68%

Could not read Windows Setup progress regkey value 'SetupProgress' at 'HKLM\SYSTEM\Setup\MoSetup\Volatile'. Stopping UI progress. (0x800703fa)

Waiting for Windows Upgrade Setup process to return ...

Scanresult.xml

<?xml version="1.0" encoding="UTF-8"?>

-<CompatReport MigXmlFile="SHD6eBH77U+QgDgz.3.8.0.0_APPRAISER_Migration.xml">

<System X64Running="True" X64Capable="True"/>


-<Hardware>


-<HardwareItem HardwareType="Setup_BitlockerNoTargetSupport">

<CompatibilityInfo BlockingType="None"/>

</HardwareItem>


-<HardwareItem HardwareType="Setup_TargetIsNonStagedBuild">

<CompatibilityInfo BlockingType="None"/>

</HardwareItem>


-<HardwareItem HardwareType="Setup_LanguagePackDetected">

<CompatibilityInfo BlockingType="None"/>

</HardwareItem>


-<HardwareItem HardwareType="Setup_LicenseActivation">

<CompatibilityInfo BlockingType="None"/>

</HardwareItem>


-<HardwareItem HardwareType="Setup_FeaturesOnDemandDetected">

<CompatibilityInfo BlockingType="None"/>

</HardwareItem>


-<HardwareItem HardwareType="Setup_PendingFirmwareUpdateWithPower">

<CompatibilityInfo BlockingType="None"/>

</HardwareItem>


-<HardwareItem HardwareType="Setup_FlightSigningEnabled">

<CompatibilityInfo BlockingType="None"/>

</HardwareItem>


-<HardwareItem HardwareType="Setup_SecureBoot">

<CompatibilityInfo BlockingType="None"/>

</HardwareItem>

</Hardware>

<SystemInfo OSMinorVersion="0" OSMajorVersion="10" UplevelEdition="Windows 10"/>

<Devices/>


-<DriverPackages>

<DriverPackage HasSignedBinaries="True" BlockMigration="False" Inf="oem45.inf"/>

<DriverPackage HasSignedBinaries="True" BlockMigration="False" Inf="oem21.inf"/>

<DriverPackage HasSignedBinaries="True" BlockMigration="False" Inf="oem14.inf"/>

<DriverPackage HasSignedBinaries="True" BlockMigration="False" Inf="oem34.inf"/>

<DriverPackage HasSignedBinaries="True" BlockMigration="False" Inf="oem9.inf"/>

<DriverPackage HasSignedBinaries="True" BlockMigration="False" Inf="oem35.inf"/>

<DriverPackage HasSignedBinaries="True" BlockMigration="False" Inf="oem53.inf"/>

<DriverPackage HasSignedBinaries="True" BlockMigration="False" Inf="oem48.inf"/>

<DriverPackage HasSignedBinaries="True" BlockMigration="False" Inf="oem16.inf"/>

<DriverPackage HasSignedBinaries="True" BlockMigration="False" Inf="oem25.inf"/>

<DriverPackage HasSignedBinaries="False" BlockMigration="True" Inf="oem1.inf"/>

<DriverPackage HasSignedBinaries="False" BlockMigration="True" Inf="oem0.inf"/>

<DriverPackage HasSignedBinaries="False" BlockMigration="True" Inf="oem10.inf"/>

<DriverPackage HasSignedBinaries="True" BlockMigration="False" Inf="oem19.inf"/>

<DriverPackage HasSignedBinaries="True" BlockMigration="False" Inf="oem12.inf"/>

<DriverPackage HasSignedBinaries="True" BlockMigration="False" Inf="oem38.inf"/>

<DriverPackage HasSignedBinaries="True" BlockMigration="False" Inf="oem18.inf"/>

<DriverPackage HasSignedBinaries="True" BlockMigration="False" Inf="oem36.inf"/>

</DriverPackages>

<Programs/>

</CompatReport>

There is no hard blocking on the system, however the upgrade is still failing with the above error for the upgrade Task sequence step, the same h/w model is upgraded successfully already so its not a h/w issue.

we are kind of going nowhere as no error is logged in the panther folder for further troubleshooting.

Only thing which we could see in the TS may be enabling the below option part of the TS but we want more proof or evidence to convince the teams.

Ignore any dismissible compatibility messages/Compat IgnoreWarningSpecifies that Setup completes the installation, ignoring any dismissible compatibility messages.

Anyhelp would be grateful.


Kamala kannan.c| Please remember to click “Mark as Answer” or Vote as Helpful if its helpful for you. |Disclaimer: This posting is provided with no warranties and confers no rights



Drivers: Duplicates imported without appending categories

$
0
0

Question about how ConfigMgr 2012 SP1 handles duplicate drivers.

Suppose I'm importing a driver. Unknown to me, it is a duplicate of an existing driver.

When doing the import, I select the option "Import the driver and append a new category to the existing categories." I select a category to add to the driver and run the import.

What happens: The driver is imported and appears as a new entry in the Drivers pane, with its own category.

What I expect to happen here is that ConfigMgr will see the new driver is a duplicate, and should _not_ import it, and should add the category I specified to the existing driver. Is this correct?

What I really want is an option to _not_ import the driver, and add the category to the existing driver.

The two drivers here have identical INF files, GUIDs within the INF, driver versions. etc, and are stored in different paths.

How exactly does ConfigMgr determine if a driver is a duplicate?

Reporting on task sequence with "Run another program first"

$
0
0

Hello All,

I wanted to know about the reporting possibilities of a program that is set as RUN ANOTHER PROGRAM FIRST to my Task sequence.

I am setting all the pre-reqs in the program which is called as a dependency to the TS, and the TS only runs of everything ends with exit 0.

But I also want to capture other exit codes of the package.

Since this package is not deployed directly and is called by the TS, how to capture the reporting details for that.

[May be a stupid question or a question which is already discussed but couldn't find it]

Thank and regards,

Ritesh Kumar

Identify OS Deployment via SCCM for Windows 10 In-Place Update

$
0
0

Hello,

I am working on the Windows 10 In Place upgrade from 1709 to 1909. I need to have a registry branding like is done for the regular Wipe and Install deployment.

Windows 10 In-Place Feature Update method is working fine. However, it cannot be customized to add a Registry Branding step, we would need to go via the Task Sequence OS Image upgrade method. But, is there a way that we can proceed with Feature Update method and later on capture any unique entry created on the system, which should confirm that the In-Place update was the one which was available from SCCM only and not done via ISO, i.e. any entry which creates a different entry from ISO and different one via Feature Update?

Thanks!

Driver re-import reports partial success, but package is empty

$
0
0

Hi... I found this article on the 2007 forum but I'm not sure it applies to me with 2012. (http://social.technet.microsoft.com/Forums/systemcenter/en-US/c9fcff89-421b-4ec3-88eb-78fb52854356/can-not-reimport-drivers-or-add-to-driver-package)

A previous employee had imported drivers and I went through and tried to clean up, first drivers i brought in worked fine. Subsequent drivers have not gone very well. I checked all the individual drivers source directory as the folder structure had all changed but that doesn't change anything. I run through a driver import and at the end (with the distribute content checked) but it doesn't distribute the content and if you check the package folder its empty. It goes through all the motions but in the end I do get this error message:

Windows 7 x86 HP 8470p_v1 - The SMS Provider reported an error.

When I check the drivercatalog.log, most of the errors are that the drivers have already been imported into the catalog. There are a couple that are imported just fine.

I check the SMSProv.log and get this (sorry if i copied too much in there, I bolded the errors at the end):

CExtUserContext::EnterThread : User=XX1\admin-XX Sid=0x0105000000000005150000003FAD1462780C9225828BA628BDB10000 Caching IWbemContextPtr=00000000002D9D20 in Process 0x11e4 (4580) SMS Provider 8/2/2013 9:54:15 AM 3296 (0x0CE0)
Context: SMSAppName=Configuration Manager Administrator console SMS Provider 8/2/2013 9:54:15 AM 3296 (0x0CE0)
Context: MachineName=XXXX.XX.XX SMS Provider 8/2/2013 9:54:15 AM 3296 (0x0CE0)
Context: UserName=XX1\admin-XX SMS Provider 8/2/2013 9:54:15 AM 3296 (0x0CE0)
Context: ObjectLockContext=238cbf6b-a700-405d-b1ac-5ff3e706836e SMS Provider 8/2/2013 9:54:15 AM 3296 (0x0CE0)
Context: ApplicationName=Microsoft.ConfigurationManagement.exe SMS Provider 8/2/2013 9:54:15 AM 3296 (0x0CE0)
Context: ApplicationVersion=5.0.7804.1000 SMS Provider 8/2/2013 9:54:15 AM 3296 (0x0CE0)
Context: LocaleID=MS\0x409 SMS Provider 8/2/2013 9:54:15 AM 3296 (0x0CE0)
Context: __ProviderArchitecture=32 SMS Provider 8/2/2013 9:54:15 AM 3296 (0x0CE0)
Context: __RequiredArchitecture=0 (Bool) SMS Provider 8/2/2013 9:54:15 AM 3296 (0x0CE0)
Context: __ClientPreferredLanguages=en-US,en SMS Provider 8/2/2013 9:54:15 AM 3296 (0x0CE0)
Context: __GroupOperationId=209904 SMS Provider 8/2/2013 9:54:15 AM 3296 (0x0CE0)
CExtUserContext : Set ThreadLocaleID OK to: 1033 SMS Provider 8/2/2013 9:54:15 AM 3296 (0x0CE0)
CSspClassManager::PreCallAction, dbname=CM_SC1 SMS Provider 8/2/2013 9:54:15 AM 3296 (0x0CE0)
ExecQueryAsync: START SELECT * FROM SMS_ObjectContainerNode WHERE ParentContainerNodeID = 0 AND ObjectTypeName = 'SMS_Driver' AND SearchFolder = 0 ORDER BY Name SMS Provider 8/2/2013 9:54:15 AM 3296 (0x0CE0)
Adding Handle 51176264 to async call map SMS Provider 8/2/2013 9:54:15 AM 3296 (0x0CE0)
CExtProviderClassObject::DoCreateInstanceEnumAsync (SMS_Query) SMS Provider 8/2/2013 9:54:15 AM 3296 (0x0CE0)
CSspQueryForObject :: Execute... SMS Provider 8/2/2013 9:54:15 AM 3296 (0x0CE0)
Execute WQL  =SELECT * FROM SMS_ObjectContainerNode WHERE ParentContainerNodeID = 0 AND ObjectTypeName = 'SMS_Driver' AND SearchFolder = 0 ORDER BY Name SMS Provider 8/2/2013 9:54:15 AM 3296 (0x0CE0)
Execute SQL =select  all SMS_ObjectContainerNode.ContainerNodeID,SMS_ObjectContainerNode.FolderFlags,SMS_ObjectContainerNode.FolderGuid,SMS_ObjectContainerNode.IsEmpty,SMS_ObjectContainerNode.Name,SMS_ObjectContainerNode.ObjectType,SMS_ObjectContainerNode.ObjectTypeName,SMS_ObjectContainerNode.ParentContainerNodeID,SMS_ObjectContainerNode.SearchFolder,SMS_ObjectContainerNode.SourceSite from vSMS_Folders AS SMS_ObjectContainerNode  where ((SMS_ObjectContainerNode.ParentContainerNodeID = 0 AND SMS_ObjectContainerNode.ObjectTypeName = N'SMS_Driver') AND SMS_ObjectContainerNode.SearchFolder = 0) order by SMS_ObjectContainerNode.Name SMS Provider 8/2/2013 9:54:15 AM 3296 (0x0CE0)
Results returned : 0 of 1 SMS Provider 8/2/2013 9:54:15 AM 3296 (0x0CE0)
Removing Handle 51176264 from async call map SMS Provider 8/2/2013 9:54:15 AM 3296 (0x0CE0)
ExecQueryAsync: COMPLETE SELECT * FROM SMS_ObjectContainerNode WHERE ParentContainerNodeID = 0 AND ObjectTypeName = 'SMS_Driver' AND SearchFolder = 0 ORDER BY Name SMS Provider 8/2/2013 9:54:15 AM 3296 (0x0CE0)
CExtUserContext::LeaveThread : Releasing IWbemContextPtr=2989344 SMS Provider 8/2/2013 9:54:15 AM 3296 (0x0CE0)
SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
CExtUserContext::EnterThread : User=XX1\admin-XX Sid=0x0105000000000005150000003FAD1462780C9225828BA628BDB10000 Caching IWbemContextPtr=00000000002D9D20 in Process 0x11e4 (4580) SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Context: SMSAppName=Configuration Manager Administrator console SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Context: MachineName=XX.ad.group SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Context: UserName=XX1\admin-XX SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Context: ObjectLockContext=238cbf6b-a700-405d-b1ac-5ff3e706836e SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Context: ApplicationName=Microsoft.ConfigurationManagement.exe SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Context: ApplicationVersion=5.0.7804.1000 SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Context: LocaleID=MS\0x409 SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Context: __ProviderArchitecture=32 SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Context: __RequiredArchitecture=0 (Bool) SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Context: __ClientPreferredLanguages=en-US,en SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Context: __GroupOperationId=209909 SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
CExtUserContext : Set ThreadLocaleID OK to: 1033 SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
CSspClassManager::PreCallAction, dbname=CM_SC1 SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
ExecQueryAsync: START SELECT * FROM SMS_ObjectContainerNode WHERE ParentContainerNodeID = 0 AND ObjectTypeName = 'SMS_Driver' AND SearchFolder = 0 ORDER BY Name SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Adding Handle 51176264 to async call map SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
CExtProviderClassObject::DoCreateInstanceEnumAsync (SMS_Query) SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
CSspQueryForObject :: Execute... SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Execute WQL  =SELECT * FROM SMS_ObjectContainerNode WHERE ParentContainerNodeID = 0 AND ObjectTypeName = 'SMS_Driver' AND SearchFolder = 0 ORDER BY Name SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Execute SQL =select  all SMS_ObjectContainerNode.ContainerNodeID,SMS_ObjectContainerNode.FolderFlags,SMS_ObjectContainerNode.FolderGuid,SMS_ObjectContainerNode.IsEmpty,SMS_ObjectContainerNode.Name,SMS_ObjectContainerNode.ObjectType,SMS_ObjectContainerNode.ObjectTypeName,SMS_ObjectContainerNode.ParentContainerNodeID,SMS_ObjectContainerNode.SearchFolder,SMS_ObjectContainerNode.SourceSite from vSMS_Folders AS SMS_ObjectContainerNode  where ((SMS_ObjectContainerNode.ParentContainerNodeID = 0 AND SMS_ObjectContainerNode.ObjectTypeName = N'SMS_Driver') AND SMS_ObjectContainerNode.SearchFolder = 0) order by SMS_ObjectContainerNode.Name SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Results returned : 0 of 1 SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Removing Handle 51176264 from async call map SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
ExecQueryAsync: COMPLETE SELECT * FROM SMS_ObjectContainerNode WHERE ParentContainerNodeID = 0 AND ObjectTypeName = 'SMS_Driver' AND SearchFolder = 0 ORDER BY Name SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
CExtUserContext::LeaveThread : Releasing IWbemContextPtr=2989344 SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
CExtUserContext::EnterThread : User=XX1\admin-XX Sid=0x0105000000000005150000003FAD1462780C9225828BA628BDB10000 Caching IWbemContextPtr=00000000002D9D20 in Process 0x11e4 (4580) SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Context: SMSAppName=Configuration Manager Administrator console SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Context: MachineName=XX.XX1.ad.group SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Context: UserName=XX1\admin-XX SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Context: ObjectLockContext=238cbf6b-a700-405d-b1ac-5ff3e706836e SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Context: ApplicationName=Microsoft.ConfigurationManagement.exe SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Context: ApplicationVersion=5.0.7804.1000 SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Context: LocaleID=MS\0x409 SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Context: ReturnAll=1 (Bool) SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Context: FolderTypeName=SMS_Driver SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Context: InstanceCount=1001 SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Context: __ProviderArchitecture=32 SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Context: __RequiredArchitecture=0 (Bool) SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Context: __ClientPreferredLanguages=en-US,en SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Context: __GroupOperationId=209914 SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
CExtUserContext : Set ThreadLocaleID OK to: 1033 SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
CSspClassManager::PreCallAction, dbname=CM_SC1 SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
ExecQueryAsync: START SELECT * FROM SMS_Driver ORDER BY LocalizedDisplayName SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Adding Handle 51176264 to async call map SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
CExtProviderClassObject::DoCreateInstanceEnumAsync (SMS_Query) SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
CSspQueryForObject :: Execute... SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Execute WQL  =SELECT * FROM SMS_Driver ORDER BY LocalizedDisplayName SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Execute SQL =select  all SMS_Driver.CI_ID,SMS_Driver.LocaleID,SMS_Driver.ApplicabilityCondition,SMS_Driver.CI_ID,SMS_Driver.CI_UniqueID,SMS_Driver.CIType_ID,SMS_Driver.CIVersion,SMS_Driver.ContentSourcePath,SMS_Driver.CreatedBy,SMS_Driver.DateCreated,SMS_Driver.DateLastModified,SMS_Driver.DriverBootCritical,SMS_Driver.DriverClass,SMS_Driver.DriverDate,SMS_Driver.DriverINFFile,SMS_Driver.DriverProvider,SMS_Driver.DriverSigned,SMS_Driver.DriverSigner,SMS_Driver.DriverType,SMS_Driver.DriverVersion,SMS_Driver.EffectiveDate,SMS_Driver.EULAAccepted,SMS_Driver.EULAExists,SMS_Driver.EULASignoffDate,SMS_Driver.EULASignoffUser,SMS_Driver.IsUserCI,SMS_Driver.InUse,SMS_Driver.IsBroken,SMS_Driver.IsBundle,SMS_Driver.IsChild,SMS_Driver.IsEnabled,SMS_Driver.IsExpired,SMS_Driver.IsHidden,SMS_Driver.IsLatest,SMS_Driver.IsQuarantined,SMS_Driver.IsSuperseded,SMS_Driver.IsUserDefined,SMS_Driver.IsVersionCompatible,SMS_Driver.LastModifiedBy,SMS_Driver.Description,SMS_Driver.DisplayName,SMS_Driver.CIInformativeURL,SMS_Driver.LocaleID,SMS_Driver.ModelID,SMS_Driver.ModelName,SMS_Driver.PermittedUses,SMS_Driver.PlatformType,SMS_Driver.SDMPackageVersion,SMS_Driver.SedoObjectVersion,SMS_Driver.SourceSite from fn_ListDriverCIs_List(1033) AS SMS_Driver  where SMS_Driver.ModelName not  in (select  all Folder##Alias##810314.InstanceKey from vFolderMembers AS Folder##Alias##810314  where Folder##Alias##810314.ObjectTypeName = N'SMS_Driver') order by SMS_Driver.DisplayName SMS Provider 8/2/2013 9:54:16 AM 3296 (0x0CE0)
Results returned : 1001 of 1002 SMS Provider 8/2/2013 9:54:21 AM 3296 (0x0CE0)
Removing Handle 51176264 from async call map SMS Provider 8/2/2013 9:54:21 AM 3296 (0x0CE0)
ExecQueryAsync: COMPLETE SELECT * FROM SMS_Driver ORDER BY LocalizedDisplayName SMS Provider 8/2/2013 9:54:21 AM 3296 (0x0CE0)
CExtUserContext::LeaveThread : Releasing IWbemContextPtr=2989344 SMS Provider 8/2/2013 9:54:21 AM 3296 (0x0CE0)
SMS Provider 8/2/2013 9:54:22 AM 3296 (0x0CE0)
CExtUserContext::EnterThread : User=XX1\admin-XX Sid=0x0105000000000005150000003FAD1462780C9225828BA628BDB10000 Caching IWbemContextPtr=00000000002D9D20 in Process 0x11e4 (4580) SMS Provider 8/2/2013 9:54:22 AM 3296 (0x0CE0)
Context: SMSAppName=Configuration Manager Administrator console SMS Provider 8/2/2013 9:54:22 AM 3296 (0x0CE0)
Context: MachineName=XX.XX.ad.group SMS Provider 8/2/2013 9:54:22 AM 3296 (0x0CE0)
Context: UserName=XX1\admin-XX SMS Provider 8/2/2013 9:54:22 AM 3296 (0x0CE0)
Context: ObjectLockContext=238cbf6b-a700-405d-b1ac-5ff3e706836e SMS Provider 8/2/2013 9:54:22 AM 3296 (0x0CE0)
Context: ApplicationName=Microsoft.ConfigurationManagement.exe SMS Provider 8/2/2013 9:54:22 AM 3296 (0x0CE0)
Context: ApplicationVersion=5.0.7804.1000 SMS Provider 8/2/2013 9:54:22 AM 3296 (0x0CE0)
Context: LocaleID=MS\0x409 SMS Provider 8/2/2013 9:54:22 AM 3296 (0x0CE0)
Context: __ProviderArchitecture=32 SMS Provider 8/2/2013 9:54:22 AM 3296 (0x0CE0)
Context: __RequiredArchitecture=0 (Bool) SMS Provider 8/2/2013 9:54:22 AM 3296 (0x0CE0)
Context: __ClientPreferredLanguages=en-US,en SMS Provider 8/2/2013 9:54:22 AM 3296 (0x0CE0)
Context: __GroupOperationId=209918 SMS Provider 8/2/2013 9:54:22 AM 3296 (0x0CE0)
CExtUserContext : Set ThreadLocaleID OK to: 1033 SMS Provider 8/2/2013 9:54:22 AM 3296 (0x0CE0)
CSspClassManager::PreCallAction, dbname=CM_SC1 SMS Provider 8/2/2013 9:54:22 AM 3296 (0x0CE0)
User Context: XX1\admin-XX SMS Provider 8/2/2013 9:54:22 AM 3296 (0x0CE0)
GetObjectAsync : SMS_Driver.CI_ID=16837168 SMS Provider 8/2/2013 9:54:22 AM 3296 (0x0CE0)
Requested class =SMS_Driver SMS Provider 8/2/2013 9:54:22 AM 3296 (0x0CE0)
Requested num keys=1 SMS Provider 8/2/2013 9:54:22 AM 3296 (0x0CE0)
Error setting property (InUse) 0x80041002! SMS Provider 8/2/2013 9:54:22 AM 3296 (0x0CE0)
Error setting property (IsBroken) 0x80041002! SMS Provider 8/2/2013 9:54:22 AM 3296 (0x0CE0)
Error setting property (IsChild) 0x80041002! SMS Provider 8/2/2013 9:54:22 AM 3296 (0x0CE0)
CExtUserContext::LeaveThread : Releasing IWbemContextPtr=2989344 SMS Provider 8/2/2013 9:54:22 AM 3296 (0x0CE0)


Errors after completion of image

$
0
0

Hi, 

Our existing task sequence to deploy is 1803 and I have duplicated it and injected 1903 win file.

I have updated winADK and WinPE. 

When I image a machine using 1903 TS it throws error 0x0000001 after completion of all tasks and then it says deployment complete. one of the issues are it fails to join AD group. 

Failed to delete registry value HKLM\Software\Microsoft\SMS\Task Sequence\Package. Error code 0x80070002

CScript Error: Can't find script engine "VBScript" for script "C:\_SMSTaskSequence\Packages\CHA0002B\JoinGroup.vbs".

Error Task Sequence Manager failed to execute task sequence. Code 0x80004005

Failed to run the action: Join AD Group. 
Incorrect function. (Error: 00000001; Source: Windows) ---- I have tested my vscript and it works fine on my machine with the username and password that's injected in TS. but it doesn't work on new machines. 

ProgramName = 'cscript.exe "JoinGroup.vbs"'

SwdAction = '0001'

Getting linked token

failed to get the linked token information. It may not be available. Error 1312

Any idea guys???



Dell Optiplex 7710 AIO issues deploying SCCM OS Task Sequence

$
0
0

I am having trouble deploying my Windows 10 Enterprise Task Sequence to a Dell Optiplex 7770 All-in-one. The Task sequence works for about a dozen other models of laptops and desktops. I exported the same task sequence to USB and it works perfectly when booting off the USB. However when PXE booting it keeps complaining about the disk.

After PXE booting, I run diskpart and it can see the disk fine. I've also deleted all partitions using diskpart before running the Task Sequence, however it refuses to work when PXE booted. The Task Sequence formats the disk for UEFI. I copied the disk partition settings from the pre-installed Windows 10 OS for the task sequence.

This AIO is running on an NVMe disk, so I'm wondering if that's the issue?

 

Snippet of errors from smsts.log

==================================================================================

"System partition not set"
"Unable to locate a bootable volume. Attempting to make C:\ bootable."
"Failed to make volume C:\ bootable. Please ensure that you have set an active partition on the boot disk before installing the operating system. Unspecified error (Error: 80004005; Source: Windows)"
"Failed to run the action: Apply Operating System. Unspecified error (Error: 80004005; Source: Windows)"
"The execution of the group (Install Operating System) has failed and the execution has been aborted. An action failed. Operation aborted (Error: 80004004; Source: Windows)"
"Failed to run the last action: Apply Operating System. Execution of task sequence failed. Unspecified error (Error: 80004005; Source: Windows)"

==================================================================================

SCCM 3 applikations installation fails.

$
0
0

Hi,

I have a tasksequence defined, which works ok but 3 programs are not installed when i deploy the tasksequence on different laptop models.

The 3 programs are:

FontExplorer X Pro 3.5.5 Customized

Heimdal Agent 2.5.120

Trend Micro OfficeScan Agent XG v8

The I can see the smslog file is showing a "AppState Download failed" before each of the failed installations but I have not been able to find the error on why they fail.

Can anyone please help me?

Here are the link 2 download 2 different smslog files. 1 from a virtuel hyperv and one from a dell workstation:

https://wetransfer.com/downloads/76261efe856f11b15a814e54707e5d1f20200304082740/249fbb

 

Best regards

SCCM 1910 - PXE - UEFI: Not booting

$
0
0

Hi everyone,

I playing with SCCM 1910 in my lab. I created boot image, OS's and Task Sequence to install WIN10 - 1809 via PXE.

Using a "legacy" device: Everything works fine. Changing from BIOS to (U)EFI booting stops working.

- I have NONE DHCP Scope policys enabled (did but no change)

- Changed buffer size(s)

- reinstalled WDS

- updated boot images from current Windows

Here's SMSPXE.log

Same behaviour for physical devices as also Virtual machines (VMWare 6.7)

<![LOG[============> Received from client:]LOG]!><time="16:53:47.824-60" date="03-05-2020" component="SMSPXE" context="" type="1" thread="1604" file="smspxe.cpp:666"><![LOG[
 Operation: BootRequest (1)  Addr type: 1 Addr Len: 6 Hop Count: 0 ID: F5659A0E
 Sec Since Boot: 0 Client IP: 000.000.000.000 Your IP: 000.000.000.000 Server IP: 000.000.000.000 Relay Agent IP: 000.000.000.000
 Addr: a4:4c:c8:78:09:da:
 Magic Cookie: 63538263
 Options:
  Type=53 Msg Type: 1=Discover
  Type=57 Max Msg Size: 05b8
  Type=55 Param Request List: 0102030405060c0d0f111216171c28292a2b3233363a3b3c4243618081828384858687
  Type=97 UUID: 0044454c4c37001037804bb6c04f344d32
  Type=94 UNDI: 010310
  Type=93 Client Arch: EFI BC
  Type=60 ClassId: PXEClient:Arch:00007:UNDI:003016]LOG]!><time="16:53:47.824-60" date="03-05-2020" component="SMSPXE" context="" type="1" thread="1604" file="pxedump.cpp:303"><![LOG[Prioritizing local MP http://xxxx.xxxx.local.]LOG]!><time="16:53:47.825-60" date="03-05-2020" component="SMSPXE" context="" type="1" thread="9036" file="database.cpp:289"><![LOG[Not in SSL.]LOG]!><time="16:53:47.848-60" date="03-05-2020" component="SMSPXE" context="" type="1" thread="9036" file="libsmsmessaging.cpp:10169"><![LOG[Not in SSL.]LOG]!><time="16:53:47.874-60" date="03-05-2020" component="SMSPXE" context="" type="1" thread="9036" file="libsmsmessaging.cpp:10169"><![LOG[Client lookup reply: <ClientIDReply><Identification Unknown="0" DuplicateSMBIOS="0" DuplicateMACAddress="0" ItemKey="0" ServerName=""><Machine><ClientID/><NetbiosName/></Machine></Identification></ClientIDReply>
]LOG]!><time="16:53:47.895-60" date="03-05-2020" component="SMSPXE" context="" type="1" thread="9036" file="libsmsmessaging.cpp:7358"><![LOG[A4:4C:C8:78:09:DA, 4C4C4544-0037-3710-804B-B6C04F344D32: Device is not in the database.]LOG]!><time="16:53:47.895-60" date="03-05-2020" component="SMSPXE" context="" type="1" thread="9036" file="database.cpp:727"><![LOG[Getting boot action for unknown machine: item key: 2046820353]LOG]!><time="16:53:47.895-60" date="03-05-2020" component="SMSPXE" context="" type="1" thread="9036" file="pxehandler.cpp:235"><![LOG[Prioritizing local MP http://xxxx.xxxx.local.]LOG]!><time="16:53:47.896-60" date="03-05-2020" component="SMSPXE" context="" type="1" thread="9036" file="database.cpp:289"><![LOG[Not in SSL.]LOG]!><time="16:53:47.916-60" date="03-05-2020" component="SMSPXE" context="" type="1" thread="9036" file="libsmsmessaging.cpp:10169"><![LOG[Request using architecture 9.]LOG]!><time="16:53:47.931-60" date="03-05-2020" component="SMSPXE" context="" type="1" thread="9036" file="database.cpp:498"><![LOG[Not in SSL.]LOG]!><time="16:53:47.933-60" date="03-05-2020" component="SMSPXE" context="" type="1" thread="9036" file="libsmsmessaging.cpp:10169"><![LOG[Client boot action reply: <ClientIDReply><Identification Unknown="0" DuplicateSMBIOS="0" DuplicateMACAddress="0" ItemKey="2046820353" ServerName=""><Machine><ClientID>d18e94f3-9323-4d86-89ed-7b812303890c</ClientID><NetbiosName/></Machine></Identification><PXEBootAction LastPXEAdvertisementID="" LastPXEAdvertisementTime="" OfferID="00120005" OfferIDTime="03.03.2020 15:53:00" PkgID="0010001A" PackageVersion="" PackagePath="http://xxxx.xxxx.local/SMS_DP_SMSPKG$/00100005" BootImageID="00100005" Mandatory="0"/></ClientIDReply>
]LOG]!><time="16:53:47.958-60" date="03-05-2020" component="SMSPXE" context="" type="1" thread="9036" file="libsmsmessaging.cpp:7597"><![LOG[A4:4C:C8:78:09:DA, 4C4C4544-0037-3710-804B-B6C04F344D32: found optional advertisement 00120005]LOG]!><time="16:53:47.959-60" date="03-05-2020" component="SMSPXE" context="" type="1" thread="9036" file="database.cpp:727"><![LOG[
 Operation: BootReply (2)  Addr type: 1 Addr Len: 6 Hop Count: 0 ID: F5659A0E
 Sec Since Boot: 0 Client IP: 000.000.000.000 Your IP: 000.000.000.000 Server IP: 192.168.001.083 Relay Agent IP: 000.000.000.000
 Addr: a4:4c:c8:78:09:da:
 Magic Cookie: 63538263
 Options:
  Type=53 Msg Type: 2=Offer
  Type=54 Svr id: 192.168.001.083
  Type=97 UUID: 0044454c4c37001037804bb6c04f344d32
  Type=60 ClassId: PXEClient]LOG]!><time="16:53:47.959-60" date="03-05-2020" component="SMSPXE" context="" type="1" thread="9036" file="pxedump.cpp:303"><![LOG[============> Received from client:]LOG]!><time="16:53:51.657-60" date="03-05-2020" component="SMSPXE" context="" type="1" thread="1604" file="smspxe.cpp:666"><![LOG[
 Operation: BootRequest (1)  Addr type: 1 Addr Len: 6 Hop Count: 0 ID: F5659A0E
 Sec Since Boot: 0 Client IP: 000.000.000.000 Your IP: 000.000.000.000 Server IP: 000.000.000.000 Relay Agent IP: 000.000.000.000
 Addr: a4:4c:c8:78:09:da:
 Magic Cookie: 63538263
 Options:
  Type=53 Msg Type: 3=Request
  Type=54 Svr id: 192.168.001.049
  Type=50 Requested IP: 192.168.001.190
  Type=57 Max Msg Size: ff00
  Type=55 Param Request List: 0102030405060c0d0f111216171c28292a2b3233363a3b3c4243618081828384858687
  Type=97 UUID: 0044454c4c37001037804bb6c04f344d32
  Type=94 UNDI: 010310
  Type=93 Client Arch: EFI BC
  Type=60 ClassId: PXEClient:Arch:00007:UNDI:003016]LOG]!><time="16:53:51.657-60" date="03-05-2020" component="SMSPXE" context="" type="1" thread="1604" file="pxedump.cpp:303">

No Task Sequences are available for workgroup computers 1910 (5.00.8913.1000)

$
0
0

This process works

  1. A task sequence is published as available to PXE and Media only for (All Unknown) and (Machines running Win 10)
  2. A computer is imaged via PXE with a TS that joins the domain
  3. You can see it in the (Machines running Win 10 collection)
  4. The same computer is PXE booted and can be imaged again with the same task sequence

This process fails

  1. A task sequence is published as available to PXE and Media only for (All Unknown) and (Machines running Win 10)
  2. A computer is imaged via PXE with a TS that that joins a workgroup
  3. You can see it in the (Machines running Win 10 collection)
  4. The same computer is PXE booted and but shows no task sequences are available.  

I've made a collection of all non-domain computers and with no luck.  I've make a custom collection of (select * from SMS_R_Computer) with no success.  In every circumstance the machine I'm looking for is part of target group.  

What I find interesting is the Assets Targeted column on the deployment tab.  It shows 69 for the all Windows 10 machines but there are 77 if you look in the collection itself.  Workgroup computers and the all systems collection both show assets targets of 0 if I add them.

The SMSTS.log agrees "No assigned task sequence" but doesn't say why they were denied.  I can delete this machine from SCCM and then image it, but this is less than ideal.  Tier II who does all the imaging doesn't have access to the console and I don't want to be involved with deleting machines.  

unable to add operating system upgrade package - get error "The specified path does not contain a valid operating system or you do not have permission to access it. Specify a valid path.

$
0
0

Trying to get Windows 10 1803 added to operating system image and upgrade package but receiving an error when I get to part to add to the upgrade package. 

SCCM is running version 1802 plus hotfix kb 4339794 & kb 4163547.  

ADK was upgraded; boot image shows updated OS 10.0.17134.1.  I was able to add the operating system wim file without error but when I attempt to point to setup.exe for the operating system upgrade package I get the error.  The operating system was distributed to the DP and shows green.  What am I missing?

iso file downloaded from https://www.microsoft.com/en-us/software-download/windows10

log file shows:

Description = "Failed to get the image property from the source WIM file due to error 80070002";
ErrorCode = 2147942402;
File = "..\\sspimagepackage.cpp";
Line = 593;
Operation = "ExecMethod";
ParameterInfo = "SMS_OperatingSystemInstallPackage";
ProviderName = "WinMgmt";
StatusCode = 2147749889;

If I click on the OS properties i imported, wrong version is showing.  shows Windows PE.  How do I get the correct ISO that will have Windows 10 Pro as an option??


Thank you,

Melissa

Viewing all 9126 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>