Displaying 20 results from an estimated 40 matches for "controlset".
2016 Aug 23
1
Re: [PATCH 1/2] v2v:windows: factor out getting CurrentControlSet
...ert_windows.ml
> @@ -210,6 +210,13 @@ let convert ~keep_serial_console (g : G.guestfs) inspect source rcaps =
> (*----------------------------------------------------------------------*)
> (* Perform the conversion of the Windows guest. *)
>
> + (* Find the 'Current' ControlSet. *)
> + let get_current_cs root =
> + let select = g#hivex_node_get_child root "Select" in
> + let valueh = g#hivex_node_get_value select "Current" in
> + let value = int_of_le32 (g#hivex_value_value valueh) in
> + sprintf "ControlSet%03Ld"...
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 Sep 01
0
Re: [PATCH v2 1/2] v2v:windows: factor out getting CurrentControlSet
...ert_windows.ml
> @@ -210,6 +210,13 @@ let convert ~keep_serial_console (g : G.guestfs) inspect source rcaps =
> (*----------------------------------------------------------------------*)
> (* Perform the conversion of the Windows guest. *)
>
> + (* Find the 'Current' ControlSet. *)
> + let get_current_cs root =
> + let select = g#hivex_node_get_child root "Select" in
> + let valueh = g#hivex_node_get_value select "Current" in
> + let value = int_of_le32 (g#hivex_value_value valueh) in
> + sprintf "ControlSet%03Ld"...
2010 Oct 19
1
[PATCH] Fix Windows conversion when ControlSet001 isn't the CurrentControlSet
If a Windows boot fails and the user boots the last known good configuration,
ControlSet001 will be marked as failed and no longer used. However, virt-v2v
would only install viostor to ControlSet001, meaning it will fail to boot this
guest after conversion.
This patch looks up the current controlset and always installs registry keys to
the correct one.
Fixes RHBZ#644254
---
lib/Sys/...
2003 Apr 12
1
WIn XP + Samba trouble
...n smbpasswd as well as passwd.
The problem is when I try to add a domain user to the xp client, I get
the error:
The user could not be added because the following error has occurred:
The trust relationship between this workstation and the primary domain
failed.
I checked
HKEY_LOCAL_MACHINE\SYSTEM\ControlSet\Services\ControlSet\Services\Netlogon\Parameters\requiresignorseal
and it is zero
Can anyone help me? I'm going insane.
--
David Frey - UVic Computer Science Student
GnuPG key available at http://chubby.dyndns.org/david_frey.gpg
-------------- next part --------------
A non-text atta...
2016 Sep 01
3
[PATCH v2 0/2] v2v:windows: prevent conflicts with PnP on firstboot
...ations fired by the PnP manager to complete
before running firstboot scripts.
The first patch is a minor refactoring to pave the way for the second
patch. The latter contains the bulk of the changes as well as the
description of the idea.
Roman Kagan (2):
v2v:windows: factor out getting CurrentControlSet
v2v:windows: prevent conflicts with PnP on firstboot
---
v1 -> v2:
- revert debug -> printf regression
v2v/convert_windows.ml | 107 +++++++++++++++++++++++++++++++++++++++++++++----
1 file changed, 100 insertions(+), 7 deletions(-)
--
2.7.4
2016 Apr 05
0
[PATCH 3/7] customize: add support for pvvxsvc
...oot = g#inspect_get_windows_systemroot root in
- let filename = sprintf "%s/system32/config/SYSTEM" systemroot in
- let filename = g#case_sensitive_path filename in
- g#hivex_open ~write:true filename;
-
- let root_node = g#hivex_root () in
-
- (* Find the 'Current' ControlSet. *)
- let current_cs =
- let select = g#hivex_node_get_child root_node "Select" in
- let valueh = g#hivex_node_get_value select "Current" in
- let value = int_of_le32 (g#hivex_value_value valueh) in
- sprintf "ControlSet%03Ld" value in
-
- (*...
2012 Aug 29
5
[PATCH 0/4] Add hivex APIs into the libguestfs API (RHBZ#852394)
This adds most of the hivex APIs directly to the libguestfs API, so
that you can read and write Windows Registry hive files from
libguestfs without needing to download and upload hive files from the
guest.
This is analogous to how Augeas APIs are exposed already
(guestfs_aug_*)
Also, inspection is now done using the new APIs, which fixes the
following bug:
2016 Jun 06
1
[PATCH] v2v:windows: prevent Parallels drivers from loading at boot
...+++++++++++++++++++++++++++++++++++++++++
1 file changed, 46 insertions(+)
diff --git a/v2v/convert_windows.ml b/v2v/convert_windows.ml
index 49811a7..012f03d 100644
--- a/v2v/convert_windows.ml
+++ b/v2v/convert_windows.ml
@@ -318,6 +318,7 @@ if errorlevel 3010 exit /b 0
debug "current ControlSet is %s" current_cs;
disable_services root current_cs;
+ disable_prl_drivers root current_cs;
disable_autoreboot root current_cs;
Windows_virtio.install_drivers g inspect systemroot
root current_cs rcaps
@@ -344,6 +345,51 @@ if errorlevel 3...
2001 Nov 01
6
WinXP - Can Join 2.2.2 domain - Not log on
I have read through the mail archives to find a solution to my problem...
to no avail. Here is the issue:
I have a Samba 2.2.2 acting as a PDC, with Win2k I can join the domain
and logon as a domain user. No problem. (So it is working and set up
properly).
With WinXP - Pro, I can join the domain, successfully. However, once I
do the reboot I cannot logon as a domain user as I did with
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
2016 Sep 02
0
[PATCH] v2v: Don't remove Processor and Intelppm nodes (RHBZ#1372668).
...sertions(+), 17 deletions(-)
diff --git a/v2v/convert_windows.ml b/v2v/convert_windows.ml
index bd1bc53..25acdcc 100644
--- a/v2v/convert_windows.ml
+++ b/v2v/convert_windows.ml
@@ -404,33 +404,22 @@ if errorlevel 3010 exit /b 0
let current_cs = get_current_cs root in
debug "current ControlSet is %s" current_cs;
- disable_services root current_cs;
+ disable_xenpv_win_drivers root current_cs;
disable_prl_drivers root current_cs;
disable_autoreboot root current_cs;
Windows_virtio.install_drivers g inspect systemroot
root curre...
2002 Jun 02
1
Samba + XP = no go
G'day.
I'm having a great time trying to get a whole heap of XP workstations (from
what I understand, they've been hotfixed+windows updated+whatever else a few
days ago) to authenticate against Samba running on a FreeBSD 4.5-STABLE box.
Basically, I add user accounts, machine accounts (with both "pw" and
"smbpasswd"), then I can get the XP machines to successfully
2014 Dec 04
0
[PATCH] v2v: Disable autoreboot when converting Windows guests.
....ml | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/v2v/convert_windows.ml b/v2v/convert_windows.ml
index e37c6b8..c8db860 100644
--- a/v2v/convert_windows.ml
+++ b/v2v/convert_windows.ml
@@ -191,6 +191,7 @@ echo uninstalling Xen PV driver
if verbose then printf "current ControlSet is %s\n%!" current_cs;
disable_services root current_cs;
+ disable_autoreboot root current_cs;
install_virtio_drivers root current_cs
and disable_services root current_cs =
@@ -212,6 +213,17 @@ echo uninstalling Xen PV driver
)
) disable
+ and disable_autor...
2016 Aug 23
0
Re: [PATCH 2/2] v2v:windows: prevent conflicts with PnP on firstboot
...Check if either RHEV-APT or VMDP exists. This is optional. *)
> let tools = [`RhevApt, "rhev-apt.exe"; `VmdpExe, "vmdp.exe"] in
> let installer =
> @@ -218,6 +230,7 @@ let convert ~keep_serial_console (g : G.guestfs) inspect source rcaps =
> sprintf "ControlSet%03Ld" value in
>
> let rec configure_firstboot () =
> + wait_pnp ();
> (match installer with
> | None -> ()
> | Some (`RhevApt, tool_path) -> configure_rhev_apt tool_path
> @@ -226,6 +239,85 @@ let convert ~keep_serial_console (g : G.guestfs)...
2016 Sep 01
0
Re: [PATCH v2 2/2] v2v:windows: prevent conflicts with PnP on firstboot
...Check if either RHEV-APT or VMDP exists. This is optional. *)
> let tools = [`RhevApt, "rhev-apt.exe"; `VmdpExe, "vmdp.exe"] in
> let installer =
> @@ -218,6 +230,7 @@ let convert ~keep_serial_console (g : G.guestfs) inspect source rcaps =
> sprintf "ControlSet%03Ld" value in
>
> let rec configure_firstboot () =
> + wait_pnp ();
> (match installer with
> | None -> ()
> | Some (`RhevApt, tool_path) -> configure_rhev_apt tool_path
> @@ -226,6 +239,85 @@ let convert ~keep_serial_console (g : G.guestfs)...
2001 Apr 04
3
Problems Using the MultipleUsersOnConnection Registry Key in WTS NT4
...nning with
Service Pack 6. After I make this change in the registry and reboot my WTS
servers all my samba connections from the servers are still being made with
one process instead of being split into multiple processes per connection.
I have placed the key into
HKEY_LOCAL_MACHINE\\SYSTEM\CurrentControlSet\Services\Rdr\Parameters and
have tried setting the registry key value to 0 and to 1 (although my
understanding is that the value should be set to 0). I have also tried
restarting the SAMBA processes on my HP-UX servers after making the registry
change.
Does anyone one have any ideas as to what I...
2016 May 22
0
[PATCH 2/2] ocaml tools: Use a common debug function.
...%s") cmd;
diff --git a/v2v/convert_windows.ml b/v2v/convert_windows.ml
index 5daae6c..aa5cb3b 100644
--- a/v2v/convert_windows.ml
+++ b/v2v/convert_windows.ml
@@ -278,7 +278,7 @@ if errorlevel 3010 exit /b 0
let value = int_of_le32 (g#hivex_value_value valueh) in
sprintf "ControlSet%03Ld" value in
- if verbose () then printf "current ControlSet is %s\n%!" current_cs;
+ debug "current ControlSet is %s" current_cs;
disable_services root current_cs;
disable_autoreboot root current_cs;
diff --git a/v2v/copy_to_local.ml b/v2v/copy_to_loc...
2016 May 22
4
ocaml tools: Use a common debug function.
Add a Common_utils.debug function for printing messages
only when in verbose mode.
Rich.
2003 Oct 31
14
help please
can someone please tell me why everyone else can connect to my samba server but me? I mean I even went as far as installing a new OS ("down-graded" back to win2k). I really need help trying to figure out why. If someone can help me in figuring that out, please let me know. And by the way...I already tried the router thing....same issue. So the router doesnt matter because I disabled the