search for: sysnative

Displaying 13 results from an estimated 13 matches for "sysnative".

Did you mean: asnative
2013 Mar 06
22
Windows Remote Desktop Services (Could not find a suitable provider for dism)
Hello all Was wondering if someone could help or advise where i''m going wrong i''m trying to install Windows 2008 R2 Remote Desktop Services via Puppet using either DISM or Powershell modules from the forge and getting the same error When using DISM class roles::trm::remote_desktop_services { dism { ''AppServer'': ensure => present, } dism {
2012 Oct 18
2
Different return codes on exec during puppet agent run vs command line Windows
Trying to run this exec in one of our manifests. When the resource is run during a puppet run, it returns a error code 87. But when I execute the same command on command prompt, it returns 3010. Is there any way to dig and and find out why the return codes are different. FYI, I am using the sysnative path to avoid the file system redirection on windows. Platform: Windows 2008R2 64 bit Running PE 2.6 agent and PE 2.6 master. Exec statement(It''s horrendous I know....) : $AILogFile=''C:\\Program Files\\HELLO_WORLD\\log\\IIS7.log'' exec { ''install_iis'&...
2012 Jun 20
5
puppet windows exec successful but not really
have the following in my manifest to delete old uninstall directories and logs using exec since we don''t have tidy for windows yet {code} exec { ''CleanupOldUninstallDirs'': command => ''C:\Windows\system32\forfiles.exe -p "C:\Windows" -m "$NtUninstall*" -d -65 -c "cmd /c dev /F /S /Q @path"'', }
2023 Mar 09
1
[V2V PATCH v2 1/1] convert_windows: add firstboot script to install drivers with pnputil
...| None -> sprintf "reg delete \"%s\" /v %s /f" strkey name + and configure_pnputil_install () = + let fb_script = "@echo off\n\ + \n\ + echo Wait for VirtIO drivers to be installed\n\ + %systemroot%\\Sysnative\\PnPutil -i -a \ + %systemroot%\\Drivers\\Virtio\\*.inf \ + " in + Firstboot.add_firstboot_script g inspect.i_root + "pnputil install drivers" fb_script; + and configure_wait_pnp tool_path = (* Prevent destructive interactions of...
2023 Mar 08
1
[V2V PATCH 1/1] convert_windows: add firstboot script to install drivers with pnputil
...| None -> sprintf "reg delete \"%s\" /v %s /f" strkey name + and configure_pnputil_install () = + let fb_script = "@echo off\n\ + \n\ + echo Wait for VirtIO drivers to be installed\n\ + %systemroot%\\Sysnative\\PnPutil -i -a \ + %systemroot%\\Drivers\\Virtio\\*.inf >\"%~dpn0.log\" 2>&1\ + " in + Firstboot.add_firstboot_script g inspect.i_root + "pnputil install drivers" fb_script; + and configure_wait_pnp tool_path =...
2023 Mar 08
1
[V2V PATCH 1/1] convert_windows: add firstboot script to install drivers with pnputil
...ot;reg delete \"%s\" /v %s /f" strkey name > > + and configure_pnputil_install () = > + let fb_script = "@echo off\n\ > + \n\ > + echo Wait for VirtIO drivers to be installed\n\ > + %systemroot%\\Sysnative\\PnPutil -i -a \ > + %systemroot%\\Drivers\\Virtio\\*.inf >\"%~dpn0.log\" 2>&1\ > + " in > + Firstboot.add_firstboot_script g inspect.i_root > + "pnputil install drivers" fb_script; > + I'm not sur...
2023 Mar 09
2
[V2V PATCH 1/1] convert_windows: add firstboot script to install drivers with pnputil
...ame > >> > >> + and configure_pnputil_install () = > >> + let fb_script = "@echo off\n\ > >> + \n\ > >> + echo Wait for VirtIO drivers to be installed\n\ > >> + %systemroot%\\Sysnative\\PnPutil -i -a \ > >> + %systemroot%\\Drivers\\Virtio\\*.inf >\"%~dpn0.log\" 2>&1\ > >> + " in > >> + Firstboot.add_firstboot_script g inspect.i_root > >> + "pnputil install drivers&quot...
2023 Mar 09
1
[V2V PATCH 1/1] convert_windows: add firstboot script to install drivers with pnputil
..." /v %s /f" strkey name >> >> + and configure_pnputil_install () = >> + let fb_script = "@echo off\n\ >> + \n\ >> + echo Wait for VirtIO drivers to be installed\n\ >> + %systemroot%\\Sysnative\\PnPutil -i -a \ >> + %systemroot%\\Drivers\\Virtio\\*.inf >\"%~dpn0.log\" 2>&1\ >> + " in >> + Firstboot.add_firstboot_script g inspect.i_root >> + "pnputil install drivers" fb_script; >&gt...
2023 Mar 13
1
[V2V PATCH 1/1] convert_windows: add firstboot script to install drivers with pnputil
...t; >>>> + and configure_pnputil_install () = >>>> + let fb_script = "@echo off\n\ >>>> + \n\ >>>> + echo Wait for VirtIO drivers to be installed\n\ >>>> + %systemroot%\\Sysnative\\PnPutil -i -a \ >>>> + %systemroot%\\Drivers\\Virtio\\*.inf >\"%~dpn0.log\" 2>&1\ >>>> + " in >>>> + Firstboot.add_firstboot_script g inspect.i_root >>>> + "pnputil install...
2023 Mar 13
1
[V2V PATCH 1/1] convert_windows: add firstboot script to install drivers with pnputil
...;> + and configure_pnputil_install () = >>>>> + let fb_script = "@echo off\n\ >>>>> + \n\ >>>>> + echo Wait for VirtIO drivers to be installed\n\ >>>>> + %systemroot%\\Sysnative\\PnPutil -i -a \ >>>>> + %systemroot%\\Drivers\\Virtio\\*.inf >\"%~dpn0.log\" 2>&1\ >>>>> + " in >>>>> + Firstboot.add_firstboot_script g inspect.i_root >>>>> + "...
2023 Mar 09
1
[V2V PATCH v2 0/1] convert_windows: add firstboot script to install drivers with pnputil
v1 discussion: https://listman.redhat.com/archives/libguestfs/2023-March/031001.html v1 -> v2: * Omit redirecting output to a separate log with "%~dpn0.log". Andrey Drobyshev (1): convert_windows: add firstboot script to install drivers with pnputil convert/convert_windows.ml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) -- 2.31.1
2023 Mar 08
1
[V2V PATCH 0/1] convert_windows: add firstboot script to install drivers with pnputil
I've been experiencing problem with the drivers not always being installed. This patch merely implements the solution offered by Richard in the commit 73e009c04 ("v2v: windows: Document use of pnputil to install drivers."). The solution wasn't implemented back then, but rather added merely as a comment. Thus I wonder is there some issues which it may cause? The most obvious
2023 Mar 16
3
[V2V PATCH v4 0/2] convert_windows: add firstboot script to install drivers with pnputil
While messing around this script, I added one more tiny patch making wait-pnp log its output into the common log.txt file, as suggested by Richard here: https://listman.redhat.com/archives/libguestfs/2023-March/031023.html Discussion on v3: https://listman.redhat.com/archives/libguestfs/2023-March/031070.html v3 -> v4: * Remove unneeded line break from the script; * Add another small