From 9a5ea41763181427c204fd11494e26460cda9056 Mon Sep 17 00:00:00 2001 From: "Michael H.G. Schmidt" Date: Thu, 28 Dec 2023 15:20:40 +0100 Subject: [PATCH] added date to ISO file and to disk label --- 05_FormatMedia.cmd | 7 ++++++- 07_MakeISO.cmd | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/05_FormatMedia.cmd b/05_FormatMedia.cmd index 47aee63..94c01df 100644 --- a/05_FormatMedia.cmd +++ b/05_FormatMedia.cmd @@ -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%] diff --git a/07_MakeISO.cmd b/07_MakeISO.cmd index f3a50e2..452278f 100644 --- a/07_MakeISO.cmd +++ b/07_MakeISO.cmd @@ -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