Displaying 7 results from an estimated 7 matches for "dpnx0".
Did you mean:
dpn0
2020 Feb 11
3
Re: [PATCH 2/2] firstboot: schedule firstboot as delayed task
...> + REM schedule delayed task
> + schtasks.exe /Delete /TN Firstboot /F
> + powershell.exe -command \"$d = (get-date).AddSeconds(119); schtasks.exe /Create /SC ONCE /ST $d.ToString('HH:mm') /SD $d.ToString('MM/dd/yyyy') /RU SYSTEM /TN Firstboot /TR \\\"%%~dpnx0 real\\\"\"
> + exit /b
> +)
> +
> echo starting firstboot service
I have really no clue about this.
What is "~dpnx0"?
I wwill say that in general we do need a way that we can order
firstboot scripts so that some run before others. At the moment the
Windows st...
2020 Feb 13
2
Re: [PATCH 2/2] firstboot: schedule firstboot as delayed task
> > I have really no clue about this.
> >
> > What is "~dpnx0"?
>
> I wanted to documented that in a comment at first. But then I decided
> against that as it seemed that as it seemed such patterns are used in
> multiple places in the code (ergo everyone knows).
>
> Looking now I see two occurrence in convert_windows.ml and one in
&...
2019 Nov 21
4
[PATCH 0/2] Delay firstboot scripts to some later time
When firstboot is used from virt-v2v the scripts, if not fast enough, can get
killed by Windows. After windows installs virtio drivers injected by virt-v2v
it performs some internall reboot, stopping all the running services and
killing any running firstboot script. This is problem mostly for MSI installs
(like qemu-ga that was added recently) that can take several seconds to finish.
This change
2020 Feb 20
0
Re: [PATCH 2/2] firstboot: schedule firstboot as delayed task
On Thu, Feb 13, 2020 at 02:07:07PM +0100, Tomáš Golembiovský wrote:
> > > I have really no clue about this.
> > >
> > > What is "~dpnx0"?
> >
> > I wanted to documented that in a comment at first. But then I decided
> > against that as it seemed that as it seemed such patterns are used in
> > multiple places in the code (ergo everyone knows).
> >
> > Looking now I see two occurrence in c...
2020 Feb 13
0
Re: [PATCH 2/2] firstboot: schedule firstboot as delayed task
...REM schedule delayed task
> > + schtasks.exe /Delete /TN Firstboot /F
> > + powershell.exe -command \"$d = (get-date).AddSeconds(119); schtasks.exe /Create /SC ONCE /ST $d.ToString('HH:mm') /SD $d.ToString('MM/dd/yyyy') /RU SYSTEM /TN Firstboot /TR \\\"%%~dpnx0 real\\\"\"
> > + exit /b
> > +)
> > +
> > echo starting firstboot service
>
> I have really no clue about this.
>
> What is "~dpnx0"?
I wanted to documented that in a comment at first. But then I decided
against that as it seemed that...
2019 Nov 21
0
[PATCH 2/2] firstboot: schedule firstboot as delayed task
...39;real' (
+ REM schedule delayed task
+ schtasks.exe /Delete /TN Firstboot /F
+ powershell.exe -command \"$d = (get-date).AddSeconds(119); schtasks.exe /Create /SC ONCE /ST $d.ToString('HH:mm') /SD $d.ToString('MM/dd/yyyy') /RU SYSTEM /TN Firstboot /TR \\\"%%~dpnx0 real\\\"\"
+ exit /b
+)
+
echo starting firstboot service
if not exist \"%%scripts_done%%\" (
--
2.24.0
2006 Sep 14
0
rsyncing from Windows 2003 shadow copies.
...REM currently in use, or an empty directory
@REM eg. x: or c:\temp\shadowcopy
@REM
set SHADOW_DRIVE_LETTER=D:
set MAP_SHADOW_TO=X:
@REM
@REM Create the shadow copy - and generate env variables into a
temporary script.
@REM Then resursively come back into this script.
set CALLBACK_SCRIPT=%~dpnx0
set TEMP_GENERATED_SCRIPT=GeneratedTempScript.cmd
@echo ...Create the shadow copy...
vshadow.exe -nw -p -script=%TEMP_GENERATED_SCRIPT%
-exec=%CALLBACK_SCRIPT% %SHADOW_DRIVE_LETTER%
del /f %TEMP_GENERATED_SCRIPT%
@goto :EOF
:IS_CALLBACK
setlocal
@REM Get the vshadow temp variables....