Read data BCD from windows

Hello

I’an finding in ANSI C : to read BCD data from Windows Vista X64 and Seven,
for determine if Windows is set testsigning fixed by bcdedit.exe ?

Thank you I need a source code to determine this.

From user mode, you can use BCD WMI Provider Classes:
http://msdn.microsoft.com/en-us/library/aa362675(VS.85).aspx

Example can be found in BazisLib:
http://sourceforge.net/projects/bazislib/
Soures: ~\bzswin\BCD. and ~\bzswin\WMI.

Mount \bood\bcd as registry hive and use registry functions to tweak it.


Maxim S. Shatskih
Windows DDK MVP
xxxxx@storagecraft.com
http://www.storagecraft.com

wrote in message news:xxxxx@ntdev…
> Hello
>
> I’an finding in ANSI C : to read BCD data from Windows Vista X64 and Seven,
> for determine if Windows is set testsigning fixed by bcdedit.exe ?
>
> Thank you I need a source code to determine this.
>

interesting :slight_smile:
current settings can be read from
HKLM\System\CurrentControlSet\Control\SystemStartOptions

-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Maxim S. Shatskih
Sent: Wednesday, July 28, 2010 3:00 PM
To: Windows System Software Devs Interest List
Subject: Re:[ntdev] Read data BCD from windows

Mount \bood\bcd as registry hive and use registry functions to tweak it.


Maxim S. Shatskih
Windows DDK MVP
xxxxx@storagecraft.com
http://www.storagecraft.com

wrote in message news:xxxxx@ntdev…
> Hello
>
> I’an finding in ANSI C : to read BCD data from Windows Vista X64 and
Seven,
> for determine if Windows is set testsigning fixed by bcdedit.exe ?
>
> Thank you I need a source code to determine this.
>


NTDEV is sponsored by OSR

For our schedule of WDF, WDM, debugging and other seminars visit:
http://www.osr.com/seminars

To unsubscribe, visit the List Server section of OSR Online at
http://www.osronline.com/page.cfm?name=ListServer

You mean you want toread the bcd store offline?

On Wednesday, July 28, 2010, wrote:
> Hello
>
> I’an finding in ANSI C : to read BCD data from Windows Vista X64 and Seven,
> for determine if Windows is set testsigning fixed by bcdedit.exe ?
>
> Thank you I need a source code to determine this.
>
> —
> NTDEV is sponsored by OSR
>
> For our schedule of WDF, WDM, debugging and other seminars visit:
> http://www.osr.com/seminars
>
> To unsubscribe, visit the List Server section of OSR Online at http://www.osronline.com/page.cfm?name=ListServer
>


Mark Roddy

> interesting :slight_smile:

\boot\bcd is a registry hive file.


Maxim S. Shatskih
Windows DDK MVP
xxxxx@storagecraft.com
http://www.storagecraft.com

If you do want to read it offline, there is also a msft library to do so.

mm

-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Maxim S. Shatskih
Sent: Wednesday, July 28, 2010 10:51 AM
To: Windows System Software Devs Interest List
Subject: Re:[ntdev] Read data BCD from windows

interesting :slight_smile:

\boot\bcd is a registry hive file.


Maxim S. Shatskih
Windows DDK MVP
xxxxx@storagecraft.com
http://www.storagecraft.com


NTDEV is sponsored by OSR

For our schedule of WDF, WDM, debugging and other seminars visit:
http://www.osr.com/seminars

To unsubscribe, visit the List Server section of OSR Online at
http://www.osronline.com/page.cfm?name=ListServer

Thank you for information