Quantcast
Channel: Configuration Manager 2007 Operating System Deployment forum
Viewing all 1063 articles
Browse latest View live

Image Capture Wizard Failed With Error 0x800704CF

$
0
0

Hey,

When I use the image capture wizard after it restarts and begins capturing, it throws error 0x800704CF.  What the heck is that? Where does the image capture wizard log? 


Capture existing Machine

$
0
0

I have some questions related to SCCM 2007 SP2 OSD

In our environment i keep building Terminal Servers based on Windows  2008 R2 or 2012 R2

These has OS / Windows patches/ All needed applications installed

In addition i have roles and features that are needed for Terminal servers.

My question is since i have build a new server very recently (have all apps installed , all roles and features installed etc) ready to be used .

It is part of our domain , has sccm client installed, has Mcafee installed, has SCOM agent installed.

Is there anyway i could make this my reference image for all future deployments, like capture this by SCCM and then whenever i need a new Terminal server i deploy using this captured image.

I read i have to unjoin form domain , remove SCCM client.

Q:Does anyone has tips , since most of the articles only say to Use build and capture rather then an existing machines

Q: It has 2 Drives C: E:  and D: is the CD drive , how do i capture both and when i deploy using this will it deploy both drives.

Q:We are using VMWare vsphere based VM's (any thing i should take care in that , like drivers etc)


Strange issue with ONLY one model.

$
0
0

Only one desktop is failing to properly complete the task sequence.

Issues:

SCCM client is not communicating with the server.

I can only  see four policy's: Machine Pol, Software Updates Depl Eval, Software Updates Scan, and User Policy Ret.

Every policy is generating an error when i try to initiate: The action could not be initiated.

At the end of the task sequence local the local administrator account is locked. I need to go in the safe mode and unlock it.

All the tasks after the installing the client are failing.

Device manager has all drivers installed.

Again only on one model i see those issues. Currently do not have same hardware to test.....

I see those errors in the smsts.log file, not sure if its related?

Error. Received 0x80072ee7 from WinHttpSendRequest.TSManager3/7/2011 12:26:14 PM1680 (0x0690)
unknown host (gethostbyname failed)TSManager3/7/2011 12:26:14 PM1680 (0x0690)
hr, HRESULT=80072ee7 (e:\nts_sms_fre\sms\framework\osdmessaging\libsmsmessaging.cpp,7714)TSManager3/7/2011 12:26:14 PM1680 (0x0690)
sending with winhttp failed; 80072ee7TSManager3/7/2011 12:26:14 PM1680 (0x0690)
Will retry in 5 second(s)TSManager3/7/2011 12:26:14 PM1680 (0x0690)
Retrying...TSManager3/7/2011 12:26:19 PM1680 (0x0690)
CLibSMSMessageWinHttpTransport::Send: URL:   CCM_POST /ccm_system/requestTSManager3/7/2011 12:26:19 PM1680 (0x0690)
Error. Received 0x80072ee7 from WinHttpSendRequest.TSManager3/7/2011 12:26:19 PM1680 (0x0690)
unknown host (gethostbyname failed)TSManager3/7/2011 12:26:19 PM1680 (0x0690)
hr, HRESULT=80072ee7 (e:\nts_sms_fre\sms\framework\osdmessaging\libsmsmessaging.cpp,7714)TSManager3/7/2011 12:26:19 PM1680 (0x0690)
sending with winhttp failed; 80072ee7TSManager3/7/2011 12:26:19 PM1680 (0x0690)
Will retry in 10 second(s)TSManager3/7/2011 12:26:19 PM1680 (0x0690)
Retrying...TSManager3/7/2011 12:26:30 PM1680 (0x0690)

Failed to Run Task Sequence (Error 0x80070032)

$
0
0

Hello folks

 

We just setup the productive SCCM environment and successfully staged many clients. But with one we have some trouble.

  1. I have added the Client with the Hostname and MAC address into SCCM
  2. Added the Client into the Collection where the Task Sequence for staging is applied
  3. Made a boot image on CD-ROM and booted up the client
  4. He can successfully connect to the SCCM Server and also get the right ask Sequence
  5. Bevor starting downloading the Vista OS WIM, the following Error occure:

    Failed to Run Task Sequence

    An error occured while starting the task sequence (0x80070032).
    For more information, please contact ....

  6. I used the Boot CD-ROM successfully on other clients without any problem.
  7. The same Task Sequence was working perfect on other clients
  8. All Clients are HP DC7800 SFF Desktops
  9. BIOS Settings are default by all the Clients
  10. Have tested the same Client on the Test SCCM Environment and got the same problem.
  11. Deleted the Client and re-added it into the SCCM Server
  12. Tried to use different network cable on different location
  13. Client successfully get a DHCP IP address

We have all done so far as I have the knowledge. Any help would kindly be appreachate.

 

Kind regards

 

Stefan

Setting Screen Resolution during OSD

$
0
0

We have a requirement to set screen resolution to 1280*720 and also have a script to do this task.

The problem is the script runs when execute locally but fails when executed from TS (Failed To Change The Resolution). Could you please help me to solve the issue?

Script used:

Function Set-ScreenResolution {
param (
[Parameter(Mandatory=$true,
           Position = 0)]
[int]
$Width,
[Parameter(Mandatory=$true,
           Position = 1)]
[int]
$Height
)
$pinvokeCode = @"
using System;
using System.Runtime.InteropServices;
namespace Resolution
{
    [StructLayout(LayoutKind.Sequential)]
    public struct DEVMODE1
    {
        [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 32)]
        public string dmDeviceName;
        public short dmSpecVersion;
        public short dmDriverVersion;
        public short dmSize;
        public short dmDriverExtra;
        public int dmFields;
        public short dmOrientation;
        public short dmPaperSize;
        public short dmPaperLength;
        public short dmPaperWidth;
        public short dmScale;
        public short dmCopies;
        public short dmDefaultSource;
        public short dmPrintQuality;
        public short dmColor;
        public short dmDuplex;
        public short dmYResolution;
        public short dmTTOption;
        public short dmCollate;
        [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 32)]
        public string dmFormName;
        public short dmLogPixels;
        public short dmBitsPerPel;
        public int dmPelsWidth;
        public int dmPelsHeight;
        public int dmDisplayFlags;
        public int dmDisplayFrequency;
        public int dmICMMethod;
        public int dmICMIntent;
        public int dmMediaType;
        public int dmDitherType;
        public int dmReserved1;
        public int dmReserved2;
        public int dmPanningWidth;
        public int dmPanningHeight;
    };
    class User_32
    {
        [DllImport("user32.dll")]
        public static extern int EnumDisplaySettings(string deviceName, int modeNum, ref DEVMODE1 devMode);
        [DllImport("user32.dll")]
        public static extern int ChangeDisplaySettings(ref DEVMODE1 devMode, int flags);
        public const int ENUM_CURRENT_SETTINGS = -1;
        public const int CDS_UPDATEREGISTRY = 0x01;
        public const int CDS_TEST = 0x02;
        public const int DISP_CHANGE_SUCCESSFUL = 0;
        public const int DISP_CHANGE_RESTART = 1;
        public const int DISP_CHANGE_FAILED = -1;
    }
    public class PrmaryScreenResolution
    {
        static public string ChangeResolution(int width, int height)
        {
            DEVMODE1 dm = GetDevMode1();
            if (0 != User_32.EnumDisplaySettings(null, User_32.ENUM_CURRENT_SETTINGS, ref dm))
            {
                dm.dmPelsWidth = width;
                dm.dmPelsHeight = height;
                int iRet = User_32.ChangeDisplaySettings(ref dm, User_32.CDS_TEST);
                if (iRet == User_32.DISP_CHANGE_FAILED)
                {
                    return "Unable To Process Your Request. Sorry For This Inconvenience.";
                }
                else
                {
                    iRet = User_32.ChangeDisplaySettings(ref dm, User_32.CDS_UPDATEREGISTRY);
                    switch (iRet)
                    {
                        case User_32.DISP_CHANGE_SUCCESSFUL:
                            {
                                return "Success";
                            }
                        case User_32.DISP_CHANGE_RESTART:
                            {
                                return "You Need To Reboot For The Change To Happen.\n If You Feel Any Problem After Rebooting Your Machine\nThen Try To Change Resolution In Safe Mode.";
                            }
                        default:
                            {
                                return "Failed To Change The Resolution";
                            }
                    }
                }
            }
            else
            {
                return "Failed To Change The Resolution.";
            }
        }
        private static DEVMODE1 GetDevMode1()
        {
            DEVMODE1 dm = new DEVMODE1();
            dm.dmDeviceName = new String(new char[32]);
            dm.dmFormName = new String(new char[32]);
            dm.dmSize = (short)Marshal.SizeOf(dm);
            return dm;
        }
    }
}
"@
Add-Type $pinvokeCode -ErrorAction SilentlyContinue
[Resolution.PrmaryScreenResolution]::ChangeResolution($width,$height)
}
Set-ScreenResolution -Width 1280 -Height 720

Dell 9010 failed OS deployment

$
0
0
Hello everyone, I am trying to push an image to a dell 9010, the image takes but when id should restart to install software the process hangs and the system does not restart. If we power down and back up it goes to the OS, the computer seems to fail the check-in right after SCCM is installed on the machine. Has anyone had this issue? is there a way we can force the computer to check in to SCCM via the CMD?

OSD Task Sequence Fails with the error: "The Certificate associated with this media has expired.New media with a valid certificate needs to be created"

$
0
0

Hello Folks,

When am trying OSD am getting the below error after PXE boot in client machine.

"The Certificate associated with this media has expired.New media with a valid certificate needs to be created"

Hence i checked the vallidity of PXE certifiacte and found that its was expired. So i extended the expiry date of the certificate and then updated the Boot Images in DP. Restarted the WDS service is server and tried the PXE Boot again. But no luck. Got the same error.

While looking into smspxe.log i could found the below error.

Certificate issued to 'aaaaaaaaaaaaaa' has expired. Certificate not valid.. 
A required certificate is not within its validity period when verifying against the current system clock or the timestamp in the signed file. (Error: 800B0101; Source: Windows)

Seems like it is still pointing/redirecting to the old certificate. How can i redirect PXE deployment to new Certificate.


V I S H N U

SCCM 2007 SP2 - Build and Capture Server 2012 R2

$
0
0

Is there any limitation in SCCM 2007 SP2 R3  to build and capture Windows server 2012 R2 images

I am trying to create a new Image for Win 2012 R2  and It fails with this error 

How can i fix it  , some post suggest manually running sysprep and then use imageX to capture 



SHEmptyRecycleBin failed, hr=8000ffffPrepareOS06-09-2015 12:42:002228 (0x08B4)
Emptying Recycle bin failed, hr=8000ffffPrepareOS06-09-2015 12:42:002228 (0x08B4)
Adding C:\WINDOWS\SysWOW64\CCM\Logs\SMSTSLog to the skip list.PrepareOS06-09-2015 12:42:002228 (0x08B4)
Successfully deleted contents of directory 'C:\WINDOWS\temp'PrepareOS06-09-2015 12:42:002228 (0x08B4)
Adding C:\WINDOWS\SysWOW64\CCM\Logs\SMSTSLog to the skip list.PrepareOS06-09-2015 12:42:002228 (0x08B4)
Successfully deleted contents of directory 'C:\WINDOWS\TEMP'PrepareOS06-09-2015 12:42:002228 (0x08B4)
Administrator account name = 'Administrator' PrepareOS06-09-2015 12:42:002228 (0x08B4)
Successfully retrieved the original password policy settingsPrepareOS06-09-2015 12:42:002228 (0x08B4)
Succesfully reset password policy settings on local machinePrepareOS06-09-2015 12:42:002228 (0x08B4)
ResetPassword operation successfulPrepareOS06-09-2015 12:42:002228 (0x08B4)
Successfully restored the original password policy settingsPrepareOS06-09-2015 12:42:002228 (0x08B4)
Staging boot image DOH002DBPrepareOS06-09-2015 12:42:002228 (0x08B4)
NT_SUCCESS(Status), HRESULT=d0000004 (e:\nts_sms_fre\sms\framework\tscore\firmware.cpp,116)PrepareOS06-09-2015 12:42:012228 (0x08B4)
Failed to query firmware type. 
Wait Callback (Error: D0000004; Source: WinHTTP) PrepareOS06-09-2015 12:42:012228 (0x08B4)
GetBootInformation(info), HRESULT=d0000004 (e:\nts_sms_fre\sms\framework\tscore\firmware.cpp,165)PrepareOS06-09-2015 12:42:012228 (0x08B4)
GetType(eType), HRESULT=d0000004 (e:\nts_sms_fre\sms\framework\tscore\firmware.cpp,195)PrepareOS06-09-2015 12:42:012228 (0x08B4)
Firmware::IsMbr(bIsFirmware), HRESULT=d0000004 (e:\nts_sms_fre\sms\framework\tscore\bootimage.cpp,522)PrepareOS06-09-2015 12:42:012228 (0x08B4)
ValidateSystemPartition(), HRESULT=d0000004 (e:\nts_sms_fre\sms\framework\tscore\bootimage.cpp,897)PrepareOS06-09-2015 12:42:012228 (0x08B4)
Failed to prepare the system partition for staging. 
Wait Callback (Error: D0000004; Source: WinHTTP) PrepareOS06-09-2015 12:42:012228 (0x08B4)
BootImage::PrepareForStaging(sLocalDataPath), HRESULT=d0000004 (e:\nts_sms_fre\sms\framework\tscore\bootimage.cpp,674)PrepareOS06-09-2015 12:42:012228 (0x08B4)
TS::Boot::BootImage::StageBootImage(sPkgID), HRESULT=d0000004 (e:\nts_sms_fre\sms\client\osdeployment\prepareos\prepareos.cpp,933)PrepareOS06-09-2015 12:42:012228 (0x08B4)
Failed to pre-stage WINPE image, hr=0xd0000004 PrepareOS06-09-2015 12:42:012228 (0x08B4)
PreStageWINPE(m_bDebug), HRESULT=d0000004 (e:\nts_sms_fre\sms\client\osdeployment\prepareos\prepareos.cpp,1374)PrepareOS06-09-2015 12:42:012228 (0x08B4)
Unable to sysprep the machine, hr=d0000004PrepareOS06-09-2015 12:42:012228 (0x08B4)
pCmd->Sysprep(bActivate, bMsd), HRESULT=d0000004 (e:\nts_sms_fre\sms\client\osdeployment\prepareos\main.cpp,270)PrepareOS06-09-2015 12:42:012228 (0x08B4)
Sysprep'ing the machine failed, hr=d0000004 PrepareOS06-09-2015 12:42:012228 (0x08B4)
De-Initialization successfulPrepareOS06-09-2015 12:42:012228 (0x08B4)
Exiting with error code 4PrepareOS06-09-2015 12:42:012228 (0x08B4)
Process completed with exit code 4TSManager06-09-2015 12:42:012128 (0x0850)
!--------------------------------------------------------------------------------------------!TSManager06-09-2015 12:42:012128 (0x0850)
Failed to run the action: Prepare OS. 
The system cannot open the file. (Error: 00000004; Source: Windows)TSManager06-09-2015 12:42:012128 (0x0850)


Combine split images

$
0
0

Hi,

I try to create stand alone media for my task sequence. Since the whole tasksequence is about 9 Gig, I choose CD/DVD set Media Size 8.5 gig. The task sequence meduia wizard will make two separte iso files, about 4.5 gig each. So far so good,

Normally I extract the iso file to my bootable USB disk so I can do the installation from usb. (did this when the sequence was 7 gig large) Since my USB disk is 16gig, I could extract both the iso files to the same USB but this does not work !

In the middle of the installation, the tasksequence will stop and ask to insert the second media to continue. Since this "second media" is also on my USB disk it will not find it and fail.

 

I cannot use USB flash drive as media type in the wizard since the server has no USB ports.

 

Is there a way to:

1/tell sccm to NOT ASK for second media but to continue on the current media ?(can i adjust a pointer whitin a file on the iso image ? )

2/ make standalone media iso 's larger then 8.5 gig whithout splitting them ?

3/ fake a USB drive so the server thinks it's writing to USB while it actually writes to a folder on the local disk ?

 

Thank you

Jeroen

 

SCCM 2007 sp2 on W2003 server - test config

 

 

 

Task Sequence has started erroring with "Failed to invoke Execution Manager to Install Software for PackageID"

$
0
0

I have a Windows 7 Professional deployment task sequence that has been running without problems for a number of months now. Last week we tried to deploy some new laptops and the task sequence failed when running the install software action with error 0x80002004. There have not been any changes made to the SCCM environment.

I have tried disabling the install software tasks and this run through and competed as required (minus the applications) as expected.

We have "No Apps" build and a 64bit build using the same process (copy of the initial Task Sequence) that is still running without a problem, so I have copied these task sequences changed the OS image/added the Install Software tasks and the problem reappears.

I have searched around on various websites and see a number of people that have similar issues, but nothing that seems to point to s resolution for me. All the other functionality we use of SCCM is running as expected (Software and Update Deployment, AI and Software Metering) and we have not seen any site status errors.

Here are the contents of the SMSTS.LOG covering the task in question:

Policy evaluation initiated InstallSoftware 11/04/2011 11:48:01 3904 (0x0F40)
Waiting for policy to be compiled in 'root\ccm\policy\machine' namespace InstallSoftware 11/04/2011 11:48:01 3904 (0x0F40)
Query path = 'CCM_SoftwareDistribution.ADV_AdvertisementID="KWS2001F",PRG_ProgramID="Install - APP00034V04R001",PKG_PackageID="KWS00608"' InstallSoftware 11/04/2011 11:48:01 3904 (0x0F40)
Verified policy is compiled in 'root\ccm\policy\machine' namespace InstallSoftware 11/04/2011 11:48:01 3904 (0x0F40)
content location count = 1 InstallSoftware 11/04/2011 11:48:01 3904 (0x0F40)
Invoking Execution Manager to install software InstallSoftware 11/04/2011 11:48:01 3904 (0x0F40)
FALSE, HRESULT=80002004 (e:\nts_sms_fre\sms\client\osdeployment\installsoftware\installsoftware.cpp,282) InstallSoftware 11/04/2011 11:48:01 3904 (0x0F40)
Failed to invoke Execution Manager to Install Software for PackageID='KWS00608' ProgramID='Install - APP00034V04R001' AdvertID='KWS2001F' hr=0x80002004 InstallSoftware 11/04/2011 11:48:01 3904 (0x0F40)
InstallSoftware failed, hr=0x80002004 InstallSoftware 11/04/2011 11:48:01 3904 (0x0F40)
0, HRESULT=80002004 (e:\nts_sms_fre\sms\client\osdeployment\installsoftware\installsoftware.cpp,746) InstallSoftware 11/04/2011 11:48:01 3904 (0x0F40)
Entering ReleaseSource() for \\SERVER1\DSP$\PACKAGES\APP00034V04R001\ InstallSoftware 11/04/2011 11:48:01 3904 (0x0F40)
reference count 1 for the source \\SERVER1l\DSP$\PACKAGES\APP00034V04R001\ before releasing InstallSoftware 11/04/2011 11:48:01 3904 (0x0F40)
Released the resolved source \\SERVER1\DSP$\PACKAGES\APP00034V04R001\ InstallSoftware 11/04/2011 11:48:01 3904 (0x0F40)
pInstall->Install(sPackageID, sProgramName), HRESULT=80002004 (e:\nts_sms_fre\sms\client\osdeployment\installsoftware\main.cpp,374) InstallSoftware 11/04/2011 11:48:01 3904 (0x0F40)
Install Software failed, hr=0x80002004 InstallSoftware 11/04/2011 11:48:01 3904 (0x0F40)
Process completed with exit code 2147491844 TSManager 11/04/2011 11:48:01 1836 (0x072C)
!--------------------------------------------------------------------------------------------! TSManager 11/04/2011 11:48:01 1836 (0x072C)
Failed to run the action: Install Symantec EndPoint Protection (32 Bit) 11.0.
Unknown error (Error: 80002004; Source: Unknown) TSManager 11/04/2011 11:48:01 1836 (0x072C)
Sending status message . . . TSManager 11/04/2011 11:48:01 1836 (0x072C)
Send a task execution status message SMS_TSExecution_ActionFailError TSManager 11/04/2011 11:48:01 1836 (0x072C)

If anyone else has seen this problem and even better has managed to resolve it I would love to know what you did.

windows 10 cd burner not working

$
0
0

After upgrading to windows 10 when I try to erase a CD a dialogue shows 'no cd burner is currently available or you do not have rights to access the burner'.

If I insert a music disc nothing happens or is recognized.

Everything worked fine before upgrade.


The CD device is part of the PC tower which came as part of the HP unit - it is not an add on on unit added later.

"Unable to find a raw disk" error - OSD on HP Z420

$
0
0

Hi,

I'm having serious troubles trying to deploy W7 on a HP Z420 workstation. TS goes fine till the step it need to

stage the boot image on the disk to make it boot and deploy the OS image, here's the snippet from SMSTS.log:

<![LOG[Successfully complete the action (Apply Operating System Partition Image) with the exit win32 code 0]LOG]!><time="19:38:36.487+000" date="05-29-2013" component="TSManager" context="" type="1" thread="408" file="instruction.cxx:3036"><![LOG[Sending status message . . .]LOG]!><time="19:38:36.487+000" date="05-29-2013" component="TSManager" context="" type="1" thread="408" file="utility.cxx:292"><![LOG[Do not send status message in full media case]LOG]!><time="19:38:36.487+000" date="05-29-2013" component="TSManager" context="" type="1" thread="408" file="utility.cxx:310"><![LOG[Set a global environment variable _SMSTSLastActionRetCode=0]LOG]!><time="19:38:36.487+000" date="05-29-2013" component="TSManager" context="" type="0" thread="408" file="executionenv.cxx:668"><![LOG[Set a global environment variable _SMSTSLastActionSucceeded=true]LOG]!><time="19:38:36.487+000" date="05-29-2013" component="TSManager" context="" type="0" thread="408" file="executionenv.cxx:668"><![LOG[Expand a string: %_SMSTSMDataPath%\Logs]LOG]!><time="19:38:36.487+000" date="05-29-2013" component="TSManager" context="" type="0" thread="408" file="executionenv.cxx:782"><![LOG[Clear local default environment]LOG]!><time="19:38:36.487+000" date="05-29-2013" component="TSManager" context="" type="0" thread="408" file="executionenv.cxx:807"><![LOG[The action (Apply Operating System Partition Image) requested a retry]LOG]!><time="19:38:36.503+000" date="05-29-2013" component="TSManager" context="" type="1" thread="408" file="engine.cxx:263"><![LOG[Reboot to WinPE]LOG]!><time="19:38:36.503+000" date="05-29-2013" component="TSManager" context="" type="1" thread="408" file="engine.cxx:453"><![LOG[Calling RebootSystem()]LOG]!><time="19:38:36.503+000" date="05-29-2013" component="TSManager" context="" type="1" thread="408" file="engine.cxx:567"><![LOG[OSD type of task sequence. ignore the service window setting]LOG]!><time="19:38:36.503+000" date="05-29-2013" component="TSManager" context="" type="1" thread="408" file="engine.cxx:669"><![LOG[Staging boot image P010012E]LOG]!><time="19:38:36.503+000" date="05-29-2013" component="TSManager" context="" type="1" thread="408" file="bootimage.cpp:672"><![LOG[bFoundRawDisk == true, HRESULT=8007000f (e:\nts_sms_fre\sms\framework\tscore\bootimage.cpp,313)]LOG]!><time="19:38:38.687+000" date="05-29-2013" component="TSManager" context="" type="0" thread="408" file="bootimage.cpp:313"><![LOG[Unable to find a raw disk that could be partitioned as the system disk]LOG]!><time="19:38:38.687+000" date="05-29-2013" component="TSManager" context="" type="3" thread="408" file="bootimage.cpp:313"><![LOG[BootImage::GetSystemDisk(iSystemDisk), HRESULT=8007000f (e:\nts_sms_fre\sms\framework\tscore\bootimage.cpp,470)]LOG]!><time="19:38:38.687+000" date="05-29-2013" component="TSManager" context="" type="0" thread="408" file="bootimage.cpp:470"><![LOG[ValidateSystemPartition(), HRESULT=8007000f (e:\nts_sms_fre\sms\framework\tscore\bootimage.cpp,897)]LOG]!><time="19:38:38.687+000" date="05-29-2013" component="TSManager" context="" type="0" thread="408" file="bootimage.cpp:897"><![LOG[Failed to prepare the system partition for staging.
The system cannot find the drive specified. (Error: 8007000F; Source: Windows)]LOG]!><time="19:38:38.687+000" date="05-29-2013" component="TSManager" context="" type="3" thread="408" file="bootimage.cpp:897"><![LOG[BootImage::PrepareForStaging(sLocalDataPath), HRESULT=8007000f (e:\nts_sms_fre\sms\framework\tscore\bootimage.cpp,674)]LOG]!><time="19:38:38.687+000" date="05-29-2013" component="TSManager" context="" type="0" thread="408" file="bootimage.cpp:674"><![LOG[TS::Boot::BootImage::StageBootImage(sBootImageID, StageBootImageProgressCallback, (LPVOID) m_sStageBootImageMessage.c_str()), HRESULT=8007000f (e:\nts_sms_fre\sms\client\tasksequence\executionengine\engine.cxx,816)]LOG]!><time="19:38:38.687+000" date="05-29-2013" component="TSManager" context="" type="0" thread="408" file="engine.cxx:816"><![LOG[Failed to stage a boot image P010012E.
The system cannot find the drive specified. (Error: 8007000F; Source: Windows)]LOG]!><time="19:38:38.687+000" date="05-29-2013" component="TSManager" context="" type="3" thread="408" file="engine.cxx:816"><![LOG[Failed to reboot the system. Error 0x(8007000f)]LOG]!><time="19:38:38.687+000" date="05-29-2013" component="TSManager" context="" type="3" thread="408" file="engine.cxx:938"><![LOG[RebootSystem(pwszRebootMessage, dwRebootTimeout, dwRebootReason, bRebootWinPE), HRESULT=8007000f (e:\nts_sms_fre\sms\client\tasksequence\executionengine\engine.cxx,575)]LOG]!><time="19:38:38.687+000" date="05-29-2013" component="TSManager" context="" type="0" thread="408" file="engine.cxx:575"><![LOG[Failed to initialize a system reboot.
The system cannot find the drive specified. (Error: 8007000F; Source: Windows)]LOG]!><time="19:38:38.687+000" date="05-29-2013" component="TSManager" context="" type="3" thread="408" file="engine.cxx:575"><![LOG[CheckForRebootRequest(&bRebootInitiated), HRESULT=8007000f (e:\nts_sms_fre\sms\client\tasksequence\executionengine\engine.cxx,274)]LOG]!><time="19:38:38.687+000" date="05-29-2013" component="TSManager" context="" type="0" thread="408" file="engine.cxx:274"><![LOG[Fatal error is returned in check for reboot request of the action (Apply Operating System Partition Image).
The system cannot find the drive specified. (Error: 8007000F; Source: Windows)]LOG]!><time="19:38:38.687+000" date="05-29-2013" component="TSManager" context="" type="3" thread="408" file="engine.cxx:274"><![LOG[An error (0x8007000f) is encountered in execution of the task sequence]LOG]!><time="19:38:38.687+000" date="05-29-2013" component="TSManager" context="" type="3" thread="408" file="engine.cxx:349"><![LOG[Sending status message . . .]LOG]!><time="19:38:38.687+000" date="05-29-2013" component="TSManager" context="" type="1" thread="408" file="utility.cxx:292"><![LOG[Do not send status message in full media case]LOG]!><time="19:38:38.687+000" date="05-29-2013" component="TSManager" context="" type="1" thread="408" file="utility.cxx:310">

I've created the boot image with all the HP drivers for WinPE (there's an officcial download), it boots and recognize the disks correctly,

partitions them rightly, but is unable to install the boot image. Already tried to change sata setting from ahci/raid to IDE, but no luck.

No BITS enable, no bitlocker, no encryption, just plain partitions. Any help?

Thanks

Laptop Shell Swap- Does it affect the SCCM Client?

$
0
0

Hello

I run our company's SCCM environment and recently found out that our desktop team has been swapping hard drives on bad machines to new machines.  The machines are the same models however, I'm seeing that there are numerous "new" machines whose clients are not completely installing.  My gut is telling me that the MAC associated with the shell receiving the HDD is still resourced in SCCM and not matching the HDD, and that may be hindering when they install the clients on new builds with old hardware.  Has anyone else had experience in a similar scenario?

Thank you

Unable to read task sequence configuration disk

$
0
0

Target Server is an HP ProLiant BL460c G5

I'm trying to load my reference iso via the iLO connection, mounting the image to the CD drive.  I used the same process to create the WIM file on my Source Server and it worked fine.  I boot from the CD, it loads windows files, then comes up to the SCCM screen with the error "Unable to read task sequence configuration disk."

Any ideas what's going on?

Automate OSD

$
0
0

Hi ,

I have below scenario.

Have enabled unknown client support. So for this the OSD works fine. However for known machine , I want to automate the process of OSD so that there is no manual intervention required for adding asset in collection and then removing the same from collection once OSD is done. Please let me know if this is possible and we can automate this?


Regards, Shishir Kushawaha "If this thread answered your question, please click on "Mark as Answer"


security log to 200MB to 2GB.

$
0
0

Hi All,

Is there any way to change security log 200MB to 2GB push from SCCM server?

Any way to "reboot" a WIM or trick it into thinking it was rebooted?

$
0
0

I have a server 2012 WIM file that I am trying to DISM the latest MSU patches into.  However my efforts fail with error: 0x800f082f which I believe is a "pending reboot" error.  

When I mount the WIM and open the registry within the WIM, I see the following entries:

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\SessionsPending]"Exclusive"=dword:00000003"TotalSessionPhases"=dword:00000000

That tells me there is a pending reboot.  So is there any way to trick the WIM into rebooting or thinking it was rebooted?  I tried to edit that registry value but it does not let me.  I am stuck here trying to inject the latest patches into the WIM.

Default Event Log Policy Settings

$
0
0

Hi All,

May I know how much Default Event Log Policy Settings for common PC?

Install Software Updates Task Error - InstallTargetedUpdates failed, error 80040708

$
0
0

We are deploying Windows 7 with a task sequence.  The task sequence includes the Install Software Updates task.  After reviewing a test deployment, it appears the machine is seeing which patches are missing.  Unfortunately the patches never apply during the deployment.  I use a script similar to the one linked here to force an updates scan:

http://www.petervanderwoude.nl/post/Installing-Software-Updates-via-a-Task-Sequence-in-ConfigMgr-2007.aspx

 

The error I keep seeing is in the UpdatesDeployment.log file:

http://i55.tinypic.com/15qwysm.jpg

"Password remains valid for" 49705 days.....

$
0
0

I have domain users who are sales reps who have AD account for forward facing web sites/ applications.

They do not log on the domain except for the web applications.  and the use their own computers.

They get this error  even after i unlock their account,  I still get this status

Our third part AD self service application fail to send notification email due to this error

The error is the same for the users in the same OU who get locked out



Standard Domain users that log in into the domain on domain PCs do not Have this issue and our AD self service application notifies users without issue.

I have check Domain controller replication and have  found no errors.

Any help with this would be appreciated.

Viewing all 1063 articles
Browse latest View live


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