Unter PB kann man den Bootsektor einlesen (createfile ...), um dann im BIOS Parameter Block am Offset 37H (http://support.microsoft.com/kb/140418/en-us) das Byte zu ändern. Anschließend kann man das alles wieder auf den Datenträger schreiben.
Musst hier aber etwas in die Internas von Fat und Fat32 ...
Die Suche ergab 118 Treffer
- 20.08.2010 10:04
- Forum: Windows
- Thema: USB Datenträgerscan
- Antworten: 10
- Zugriffe: 4428
- 20.08.2010 09:21
- Forum: Allgemein
- Thema: DSL Netzwerkverbindung deaktivieren
- Antworten: 7
- Zugriffe: 1710
Re: DSL Netzwerkverbindung deaktivieren
OpenLibrary(1,"setupapi.dll")
*F1 = GetFunction(1, "CM_Locate_DevNodeA")
*F2 = GetFunction(1, "CM_Disable_DevNode")
*F3 = GetFunction(1, "CM_Enable_DevNode")
;look in registry HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum
;to find Identifiers for PCI/USB ... Devices
id.s = "USB\VID_148F&PID ...
*F1 = GetFunction(1, "CM_Locate_DevNodeA")
*F2 = GetFunction(1, "CM_Disable_DevNode")
*F3 = GetFunction(1, "CM_Enable_DevNode")
;look in registry HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum
;to find Identifiers for PCI/USB ... Devices
id.s = "USB\VID_148F&PID ...
- 11.01.2009 13:31
- Forum: Offtopic
- Thema: windows 7 x64 (beta1)
- Antworten: 130
- Zugriffe: 17502
- 10.01.2009 19:47
- Forum: Offtopic
- Thema: windows 7 x64 (beta1)
- Antworten: 130
- Zugriffe: 17502
windows 7 x64 (beta1)
habe gerade mal windows 7 beta1 (x64) installiert ... und bin positiv überrascht . :D
- fühlt sich um einiges flüssiger an als vista
- kein performanceverlust x64 gegenüber x32
...
auf meinem testsystem (nvidia-chipsatz, amd-cpu,2gb ram,tv ...) läuft progdvb (64-bit) ertaunlich flott (trotz ...
- fühlt sich um einiges flüssiger an als vista
- kein performanceverlust x64 gegenüber x32
...
auf meinem testsystem (nvidia-chipsatz, amd-cpu,2gb ram,tv ...) läuft progdvb (64-bit) ertaunlich flott (trotz ...
- 02.11.2008 13:58
- Forum: Code, Tipps und Tricks
- Thema: pc mit deutscher internetzeit abgleichen
- Antworten: 8
- Zugriffe: 3247
pc mit deutscher internetzeit abgleichen
da meine pc-uhr langsam alters-schwach wird , gleiche ich diese bei jedem xp-start mit der deutschen internetzeit ab ...
8)
#INTERNET_FLAG_DONT_CACHE = $4000000
tlen.l = 25 ;Fri Oct 31 22:49:54 2008
tbuffer.s = Space(tlen)
hinet.l = InternetOpen_("nix007",0,0,0,0)
hurl.l = InternetOpenUrl ...
8)
#INTERNET_FLAG_DONT_CACHE = $4000000
tlen.l = 25 ;Fri Oct 31 22:49:54 2008
tbuffer.s = Space(tlen)
hinet.l = InternetOpen_("nix007",0,0,0,0)
hurl.l = InternetOpenUrl ...
- 22.07.2008 18:36
- Forum: Code, Tipps und Tricks
- Thema: imapi2 xp/sp2/3+vista cd/dvd/brennerinfo (FEATURE + PROFILE)
- Antworten: 7
- Zugriffe: 2704
- 02.07.2008 11:35
- Forum: Code, Tipps und Tricks
- Thema: wmi abfrage mit advapi32.dll
- Antworten: 0
- Zugriffe: 1212
wmi abfrage mit advapi32.dll
alles undokumentiert aber ähnlich ...
IoWmiOpenBlock = WmiOpenBlock in advapi32.dll 8)
IoWmiQueryAllDataA = WmiQueryAllDataA ...
http://msdn.microsoft.com/en-us/library/aa490467.aspx
muster code ... (xp/vista)
OpenLibrary(0, "advapi32.dll")
f1 = GetFunction(0,"WmiOpenBlock")
f2 = GetFunction(0 ...
IoWmiOpenBlock = WmiOpenBlock in advapi32.dll 8)
IoWmiQueryAllDataA = WmiQueryAllDataA ...
http://msdn.microsoft.com/en-us/library/aa490467.aspx
muster code ... (xp/vista)
OpenLibrary(0, "advapi32.dll")
f1 = GetFunction(0,"WmiOpenBlock")
f2 = GetFunction(0 ...
- 09.05.2008 21:48
- Forum: Code, Tipps und Tricks
- Thema: imapi2 xp/sp2/3+vista cd/dvd/brennerinfo (FEATURE + PROFILE)
- Antworten: 7
- Zugriffe: 2704
- 09.05.2008 21:16
- Forum: Code, Tipps und Tricks
- Thema: imapi2 xp/sp2/3+vista cd/dvd/brennerinfo (FEATURE + PROFILE)
- Antworten: 7
- Zugriffe: 2704
dieser kb muss installiert sein bei xp !
http://www.microsoft.com/downloads/deta ... laylang=en
so wie ich das überblicke , wird der auch nicht bei sp3 installiert (siehe imapi2.dll im ...system32)
http://www.microsoft.com/downloads/deta ... laylang=en
so wie ich das überblicke , wird der auch nicht bei sp3 installiert (siehe imapi2.dll im ...system32)
- 09.05.2008 20:35
- Forum: Code, Tipps und Tricks
- Thema: imapi2 xp/sp2/3+vista cd/dvd/brennerinfo (FEATURE + PROFILE)
- Antworten: 7
- Zugriffe: 2704
imapi2 xp/sp2/3+vista cd/dvd/brennerinfo (FEATURE + PROFILE)
es gibt hier schon einige abhandlungen zur nutzung des imapi2-interfaces unter xp (sp2/sp3) und/oder vista ...
habe mal vorhandene codes etwas vereinfacht ...
Interface IDiscMaster2 Extends IDispatch
get__NewEnum(a)
get_Item(a,b)
get_Count(a)
get_IsSupportedEnvironment(a)
EndInterface ...
habe mal vorhandene codes etwas vereinfacht ...
Interface IDiscMaster2 Extends IDispatch
get__NewEnum(a)
get_Item(a,b)
get_Count(a)
get_IsSupportedEnvironment(a)
EndInterface ...