phkurray Posted October 18, 2016 Report post Posted October 18, 2016 Hi guys, First of all I want to apologize for my bad english, i hope you understand what I want to tell you. I´m new here and have a huge Problem and I don´t really understand what´s the matter... I am at the end of my training as an IT specialist and I´m working on my final thesis and the goal of this is to change the OS to Win10 in the company I work at. Therefore I created a TS with SCCM 1606 which should change automatically from BIOS to UEFI and set self-defined settings in the UEFI (we only have Dell Clients, thus it´s no Problem to distribute all settings uniformly). After this step is completed I format und partition the disk with GPT (including EFI, MSR and primary partition) and store the drive letter of the primary partition in the variable "SYSPART". Then the TS should apply the OS (I created the Image with a SCCM B&C TS) on the primary partition. Everytime it reaches this step the TS fails with the error which I wrote in the title. I also attached the smsts.log and tomorrow I also can upload a screenshot of my TS. I hope you can help me with my problem! With best regards, Philipp smsts_x64pxe.log Quote Share this post Link to post Share on other sites More sharing options...
loukkis Posted October 18, 2016 Report post Posted October 18, 2016 Problem is that TS is unable to make partition bootable. Please see the reason in bolded font below: <![LOG[unable to locate a bootable volume. Attempting to make C:\ bootable.]LOG]!><time="13:59:33.016+480" date="10-18-2016" component="ApplyOperatingSystem" context="" type="2" thread="500" file="installcommon.cpp:765"><![LOG[Volume C:\ is on the boot disk.]LOG]!><time="13:59:33.031+480" date="10-18-2016" component="ApplyOperatingSystem" context="" type="0" thread="500" file="installcommon.cpp:694"><![LOG[Volume C:\ has an NTFS filesystem.]LOG]!><time="13:59:33.031+480" date="10-18-2016" component="ApplyOperatingSystem" context="" type="0" thread="500" file="installcommon.cpp:701">....<![LOG[partitionProps.PartitionStyle == VDS_PST_MBR, HRESULT=80004001 (e:\nts_sccm_release\sms\framework\tscore\diskvolume.cpp,937)]LOG]!><time="13:59:33.031+480" date="10-18-2016" component="ApplyOperatingSystem" context="" type="0" thread="500" file="diskvolume.cpp:937"><![LOG[Marking partitions active is only supported for MBR disks.]LOG]!><time="13:59:33.031+480" date="10-18-2016" component="ApplyOperatingSystem" context="" type="3" thread="500" file="diskvolume.cpp:937"><![LOG[ActivateImpl( spVolume, bTest ), HRESULT=80004001 (e:\nts_sccm_release\sms\framework\tscore\diskvolume.cpp,1645)]LOG]!><time="13:59:33.031+480" date="10-18-2016" component="ApplyOperatingSystem" context="" type="0" thread="500" file="diskvolume.cpp:1645"><![LOG[unable to activate partition (0x80004001)]LOG]!><time="13:59:33.031+480" date="10-18-2016" component="ApplyOperatingSystem" context="" type="3" thread="500" file="diskvolume.cpp:1645"><![LOG[TS::Utility::CVolume::Activate( sVolume.substr(0, 2) ), HRESULT=80004001 (e:\nts_sccm_release\sms\client\osdeployment\applyos\installcommon.cpp,708)]LOG]!><time="13:59:33.031+480" date="10-18-2016" component="ApplyOperatingSystem" context="" type="0" thread="500" file="installcommon.cpp:708"><![LOG[Failed to make volume C:\ bootable. Code 0x80004001.]LOG]!><time="13:59:33.241+480" date="10-18-2016" component="ApplyOperatingSystem" context="" type="3" thread="500" file="installcommon.cpp:708"><![LOG[MakeVolumeBootable( pszVolume ), HRESULT=80004001 (e:\nts_sccm_release\sms\client\osdeployment\applyos\installcommon.cpp,772)]LOG]!><time="13:59:33.241+480" date="10-18-2016" component="ApplyOperatingSystem" context="" type="0" thread="500" file="installcommon.cpp:772"><![LOG[Failed to make volume C:\ bootable. Please ensure that you have set an active partition on the boot disk before installing the operating system.Not implemented (Error: 80004001; Source: Windows)]LOG]!><time="13:59:33.241+480" date="10-18-2016" component="ApplyOperatingSystem" context="" type="3" thread="500" file="installcommon.cpp:772"><![LOG[ConfigureBootVolume(targetVolume), HRESULT=80004001 (e:\nts_sccm_release\sms\client\osdeployment\applyos\applyos.cpp,499)]LOG]!><time="13:59:33.241+480" date="10-18-2016" component="ApplyOperatingSystem" context="" type="0" thread="500" file="applyos.cpp:499"><![LOG[Process completed with exit code 2147500033]LOG]!><time="13:59:33.241+480" date="10-18-2016" component="TSManager" context="" type="1" thread="1296" file="commandline.cpp:1124"> 1 Quote Share this post Link to post Share on other sites More sharing options...
phkurray Posted October 18, 2016 Report post Posted October 18, 2016 Thank you for your fast reply! I already saw this but I dont understand how I can make the partition bootable. The diskpart -active way isn't working with GPT. If I switch to UEFI the disk has to be set to GPT or did I get this wrong? Do you may have a suggestion for me how to fix it? Quote Share this post Link to post Share on other sites More sharing options...