Page 1 of 1

Option for ISO folder

PostPosted: 12.09.2018, 11:58
by Mikko70
I keep Wsusoffline files in 64GB usb stick.
There is limited space for ISO-files.
I manually edit CreateISOImage.cmd file
It force rename current folder name, it's ok but i hope Gui option for it.


Code: Select all
:CreateImage
rem *** Create ISO image ***
if "%NEW_NAME%"=="" SET NEW_NAME=other
if "%ISO_NAME%"=="wsusoffline-w60" SET NEW_NAME=vista_server2008
if "%ISO_NAME%"=="wsusoffline-w60-x64" SET NEW_NAME=vista_server2008
if "%ISO_NAME%"=="wsusoffline-w61" SET NEW_NAME=win7_server2008R2
if "%ISO_NAME%"=="wsusoffline-w61-x64" SET NEW_NAME=win7_server2008R2
if "%ISO_NAME%"=="wsusoffline-w62" SET NEW_NAME=win8_server2012
if "%ISO_NAME%"=="wsusoffline-w62-x64" SET NEW_NAME=win8_server2012
if "%ISO_NAME%"=="wsusoffline-w63" SET NEW_NAME=win8.1_server2012R2
if "%ISO_NAME%"=="wsusoffline-w63-x64" SET NEW_NAME=win8.1_server2012R2
if "%ISO_NAME%"=="wsusoffline-w100" SET NEW_NAME=win10
if "%ISO_NAME%"=="wsusoffline-w100-x64" SET NEW_NAME=win10
if "%ISO_NAME%"=="wsusoffline-ofc" SET NEW_NAME=office_all
if "%ISO_NAME%"=="wsusoffline-o2k07" SET NEW_NAME=office2007
if "%ISO_NAME%"=="wsusoffline-o2k10" SET NEW_NAME=office2010
if "%ISO_NAME%"=="wsusoffline-o2k13" SET NEW_NAME=office2013
if "%ISO_NAME%"=="wsusoffline-o2k16" SET NEW_NAME=office2016
md %TEMP%\ISO\%NEW_NAME%
set OUTPUT_PATH="%TEMP%\ISO\%NEW_NAME%"

if %OUTPUT_PATH%~==~ set OUTPUT_PATH=..\iso

Re: Option for ISO folder

PostPosted: 12.09.2018, 19:40
by aker
So you wish to be able to adjust the ISO output path, correct?
I don‘t think, it would be the best way to create a folder for each ISO, but being able to adjust the path may be a good idea.

Re: Option for ISO folder

PostPosted: 12.09.2018, 20:52
by boco
In case of hard disks, you can easily use symbolic links, I'm doing that for years. Of course, that usually doesn't work for USB devices (using FAT32 or exFAT file systems).