search for: classguid

Displaying 14 results from an estimated 14 matches for "classguid".

2015 Jul 11
0
Re: Migrate Win2k3 to KVM
...write hives) Back to your linux term: - - cd ../drivers/ - - Check you have atapi.sys and intelide.sys. In case you don't, extract them from the cab file you can find in Windows\Driver Cache\i386 - - Umount - - Try to boot again, and report. What did you do? You just added the missing hardware ClassGUID for Intel IDE (which is what Qemu uses) to Windows registry. When installing, Windows just sets the strictly minimalistic ones to match your hardware. And then, you defined the associated drivers with these ClassGUID. These are defined as service to allow defining how they boot. When Start is set t...
2014 Dec 02
1
[PATCH NOT TO BE APPLIED] v2v: windows: Make registry changes to all ControlSets, not
[Partly using the mailing list as a backup again ...] This commit changes virt-v2v to make registry changes to all ControlSets, not just the CurrentControlSet. Not sure what difference if any this would make. Rich.
2016 Apr 05
0
[PATCH 4/7] v2v: extract reusable parts of viostor regedits
...tension driver in let regedits = [ [ current_cs; "Control"; "CriticalDeviceDatabase"; "pci#ven_1af4&dev_1001&subsys_00000000" ], - [ "Service", REG_SZ "viostor"; + [ "Service", REG_SZ driver_name; "ClassGUID", REG_SZ "{4D36E97B-E325-11CE-BFC1-08002BE10318}" ]; [ current_cs; "Control"; "CriticalDeviceDatabase"; "pci#ven_1af4&dev_1001&subsys_00020000" ], - [ "Service", REG_SZ "viostor"; + [ "Service", RE...
2015 Jul 11
8
Re: Migrate Win2k3 to KVM
Hi, The error line is: *** STOP: 0x0000007B (0xF789AA94, 0xC0000034, 0x00000000, 0x00000000) Nothing more! (Of course there are some inrelevant text line about chkdsk, etc.) > Basically, what's required is the "STOP:" line + the image where it > fails (so, the line below). Image being likely to be NTOSKRNL.EXE > Nothing about NTOSKRNL.EXE on the blue screen! > >
2010 Oct 19
1
[PATCH] Fix Windows conversion when ControlSet001 isn't the CurrentControlSet
...ostor. -[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\CriticalDeviceDatabase\pci#ven_1af4&dev_1001&subsys_00000000] +[HKEY_LOCAL_MACHINE\\SYSTEM\\$current_cs\\Control\\CriticalDeviceDatabase\\pci#ven_1af4&dev_1001&subsys_00000000] "Service"="viostor" "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}" -[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\CriticalDeviceDatabase\pci#ven_1af4&dev_1001&subsys_00020000] +[HKEY_LOCAL_MACHINE\\SYSTEM\\$current_cs\\Control\\CriticalDeviceDatabase\\pci#ven_1af4&dev_1001&subsys_0002000...
2016 Apr 06
8
[PATCH 0/4] v2v: simplify Windows registry patching
The way we patch the Windows registry in order to allow it to boot off a virtio-blk drive was initially conceived by comparing the state with virtio-blk driver properly installed, to that without. However, we don't want to replicate the Windows PnP system; rather we need to apply just enough edits to make the system boot, and then let the Windows PnP manager figure out the rest. This series
2010 May 06
1
[PATCH v2v] Pre-convert Windows guests.
...# Make the changes. + my $regedits_w2k3 = ' +; Edits to be made to a Windows 2003 guest to have +; it boot from viostor. + +[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\CriticalDeviceDatabase\pci#ven_1af4&dev_1001&subsys_00000000] +"Service"="viostor" +"ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}" + +[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\CriticalDeviceDatabase\pci#ven_1af4&dev_1001&subsys_00020000] +"Service"="viostor" +"ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}" + +[H...
2008 Jun 27
2
New USB ethernet adapter
...Adapter * ; * ; Copyright 2001-2003, ASIX Electronics Corporation * ; ; Version: 2.0.0.5 ;**************************************************************** [Version] Signature = "$Windows NT$" CatalogFile = ax88172xp.cat Class = Net ClassGUID = {4d36e972-e325-11ce-bfc1-08002be10318} Provider = %ASIX% ;LayoutFile = layout.inf DriverVer = 05/22/2003, 2.0.0.5 [Manufacturer] %ASIX% = USB [ControlFlags] ExcludeFromSelect = USB\VID_0B95&PID_1720 [USB] %AX88172.DeviceDesc% = AX88172.Ndi,USB\VID_0B95&PID_1720 ;*************...
2004 Oct 22
0
cupsaddsmb and .inf files
...---------------------------- ; PSCRIPT.INF ; ; Michael Lueck, Lueck Data Systems ; Version 1.1 ; This INF is intended to be used with: ; Adobe Universal PostScript Windows Driver Installer 1.0.6 - English [Version] Signature="$Windows NT$" Provider="Adobe" LayoutFile=layout.inf ClassGUID={4D36E979-E325-11CE-BFC1-08002BE10318} Class=Printer [Manufacturer] "Adobe" [Adobe] "AdobePSGenericPostScriptPrinter" = DEFPRTR2.PPD [DEFPRTR2.PPD] CopyFiles=PSCRIPT DataSection=PSCRIPT_DATA [PSCRIPT] DEFPRTR2.PPD PS5UI.DLL PSCRIPT.HLP PSCRIPT.NTF...
2016 Apr 05
22
[PATCH 0/7] Add support for SUSE virtio windows drivers
Hi there, SUSE ships Virtual Machine Driver Pack for the virtio windows drivers. Get v2v and customize to discover them and use them if available. Cédric Bosdonnat (7): v2v: check next free oem%d.inf in /Windows/Inf v2v: extract controller offset discovery as a function customize: add support for pvvxsvc v2v: extract reusable parts of viostor regedits v2v: adapt the subkey in Enum
2015 Nov 17
0
[PATCH 2/3] v2v: windows: Add a Windows '*.inf' file parser.
...uot; // "2k12" // "amd64" // "balloon.inf" in + + let sections = Windows_inf.load path in + + let expected = [ + "version", [ + "signature", "\"$WINDOWS NT$\""; + "class", "System"; + "classguid", "{4d36e97d-e325-11ce-bfc1-08002be10318}"; + "provider", "%RHEL%"; + "driverver", "12/04/2014,62.71.104.9600"; + "catalogfile", "Balloon.cat"; + "driverpackagetype", "PlugAndPlay"; +...
2010 Sep 17
15
Fwd: Unable to Get Sony IC Recorder (Digital Voice Editor 3.3.01) to Work with 32-bit Wine (Windows Emulator) in 64-bit Fedora 11 x86_64 Linux
...72,00,6f,00,74,00,5f,00,30,00,30,00,00,00,55,00,\ 53,00,42,00,5c,00,43,00,6c,00,61,00,73,00,73,00,5f,00,66,00,66,00,26,00,53,\ 00,75,00,62,00,43,00,6c,00,61,00,73,00,73,00,5f,00,30,00,30,00,00,00,55,00,\ 53,00,42,00,5c,00,43,00,6c,00,61,00,73,00,73,00,5f,00,66,00,66,00,00,00,00,\ 00 "ClassGUID"="{36FC9E60-C465-11CF-8056-444553540000}" "Class"="USB" "Driver"="{36FC9E60-C465-11CF-8056-444553540000}\\0003" "Mfg"="Sony Corporation" "Service"="ICDUSB2" "ConfigFlags"=dword:00000000 [HKEY_L...
2015 Nov 17
8
[PATCH 0/3] v2v: windows: Use '*.inf' files to control how Windows drivers are installed.
https://github.com/rwmjones/libguestfs/tree/rewrite-virtio-copy-drivers Instead of trying to split and parse elements from virtio-win paths, use the '*.inf' files supplied with the drivers to control how Windows drivers are installed. The following emails best explain how this works: https://www.redhat.com/archives/libguestfs/2015-October/msg00352.html
2017 Feb 18
11
[PATCH 0/8] Miscellaneous cleanups to Windows registry code.
A very miscellaneous set of cleanups to how we handle the Windows registry in virt-v2v, firstboot, and inspection code. This should all be straightforward non-controversial refactoring. Some highlights: - Add a new mllib Registry module containing various utility functions that are currently scattered all around. - Only compute the software/system hive paths once during inspection, and