added date to ISO file and to disk label

This commit is contained in:
Michael H.G. Schmidt 2023-12-28 15:20:40 +01:00
parent eb92b54f8e
commit 9a5ea41763
2 changed files with 12 additions and 2 deletions

View File

@ -2,6 +2,11 @@
set T=c:\TEMP
set DPARTSCRIPT=%T%\diskpart.txt
rem set name for media ...
for /f "tokens=2 delims==" %%a in ('wmic OS Get localdatetime /value') do set "dt=%%a"
set "YY=%dt:~2,2%" & set "MM=%dt:~4,2%" & set "DD=%dt:~6,2%"
set OSLABEL=W10-%YY%%MM%%DD%
rem create temp directory ...
mkdir %T% 1>nul 2>nul
@ -88,7 +93,7 @@ set SIZE=32768
:CONT3
echo.
set LABEL=W10install
set LABEL=%OSLABEL%
set /p LABEL="Please enter a label for the new disk [%LABEL%] : "
echo WARNING ! This will DELETE ALL data on disk number [%DISK%]

View File

@ -1,6 +1,11 @@
@echo off
rem set name for media ...
for /f "tokens=2 delims==" %%a in ('wmic OS Get localdatetime /value') do set "dt=%%a"
set "YY=%dt:~2,2%" & set "MM=%dt:~4,2%" & set "DD=%dt:~6,2%"
set OSLABEL=W10-%YY%%MM%%DD%
set OSCDPATH="%ProgramFiles(x86)%\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\Oscdimg"
set OSLABEL=WIN10-AUTO
set ISOFILE=%SystemDrive%\temp\%OSLABEL%.iso
IF %1.==. GOTO USAGE