Search found 136 matches

by balubeto
09 Sep 2016 01:11
Forum: DOS Batch Forum
Topic: esd ---> iso script (Testing in progress)
Replies: 85
Views: 54117

Re: esd ---> iso script (Work in Progress)

A moment : Since the -t option of the Oscdimg command m is independent of the operating system language used, the string entered by the user should always be compatible with the format mm/dd/yyyy,hh:mm:ss. Therefore, the script should test this and that this string has a logical sense. Right? You a...
by balubeto
08 Sep 2016 02:37
Forum: DOS Batch Forum
Topic: esd ---> iso script (Testing in progress)
Replies: 85
Views: 54117

Re: esd ---> iso script (Work in Progress)

Since the -t option of the Oscdimg command m is independent of the operating system language used, the string entered by the user should always be compatible with the format mm/dd/yyyy,hh:mm:ss. Therefore, the script should test this and that this string has a logical sense. Right? Did you perhaps ...
by balubeto
07 Sep 2016 11:37
Forum: DOS Batch Forum
Topic: esd ---> iso script (Testing in progress)
Replies: 85
Views: 54117

Re: esd ---> iso script (Work in Progress)

The timestamp should be built easily, but your local time/date string it is highly system dependent. You could probably use the helper bat file getTimeStamp.bat created by dbenham. If that doesn't help you, then please post the result of: echo %date%,%time% I'm not familiar with UDF 1.02 - i only k...
by balubeto
07 Sep 2016 02:13
Forum: DOS Batch Forum
Topic: esd ---> iso script (Testing in progress)
Replies: 85
Views: 54117

esd ---> iso script (Work in Progress)

When I insert an iso file that exists, the message "Warning: Could not verify read access: Reason filesize of "D:\Users\Public\Documents\Balubeto\Test_script\iso\Test.iso" is 0." is displayed before the request of overwriting the file. Why this warning? How do I correct it in or...
by balubeto
06 Sep 2016 10:19
Forum: DOS Batch Forum
Topic: esd ---> iso script (Testing in progress)
Replies: 85
Views: 54117

Re: Script error during the startup

Sorry, i'd few time the last days. but does not work properly because does not check the validity of the iso file name. It seems the validity is checked properly (you only added the lines "call :setValidPath "iso_File"..." and "echo iso_File : "%iso_File%"")....
by balubeto
03 Sep 2016 10:00
Forum: DOS Batch Forum
Topic: esd ---> iso script (Testing in progress)
Replies: 85
Views: 54117

Re: Script error during the startup

The first problem is solved with your last change. If necessary, it is possible to make sure that the script asks to enter only the third or fourth argument when these do not exist on the computer (also because the first and second argument have already been written on the command line)? I'm not su...
by balubeto
02 Sep 2016 10:19
Forum: DOS Batch Forum
Topic: esd ---> iso script (Testing in progress)
Replies: 85
Views: 54117

Re: Script error during the startup

The only elements that must be present on the computer are logically the ESD directory and file. Now, when I run the script with four arguments, this D:\Users\Public\Documents\Balubeto\Test_script>Test_01.bat "D:\Users\Public\Documents\Balubeto\Test_script\WSM" "D:\Users\Public\Docum...
by balubeto
02 Sep 2016 03:58
Forum: DOS Batch Forum
Topic: esd ---> iso script (Testing in progress)
Replies: 85
Views: 54117

Re: Script error during the startup

There was a little bug (if variable pathName is empty); easily fixed set pathname to a space character: if not defined invalid if "!pathName!" == "" set "invalid=The pathname cannot be empty." & set "pathName= " I fixed another issue, hopefully it is &quo...
by balubeto
01 Sep 2016 11:38
Forum: DOS Batch Forum
Topic: esd ---> iso script (Testing in progress)
Replies: 85
Views: 54117

esd ---> iso script (Testing in progress)

If I run this script from the command prompt: @echo off setlocal enableExtensions disableDelayedExpansion call :setValidPath "Windows_Files_Path" "%~1" "Enter the directory in which put the content of the ""Windows Setup Media"" volume image:" "...
by balubeto
03 Aug 2016 10:30
Forum: DOS Batch Forum
Topic: Bat script with some problems (explanation)
Replies: 10
Views: 7064

Re: Bat script with some problems (explanation)

belubeto penpen asked you to define what a valid date is. The date format is language dependent. E.g. Wed 08/03/2016 03.08.2016 2016-08-03 could all mean the same and they are all valid! Furthermore - How shall the time stamp look like that you want to append to your iso name? Something like 201608...
by balubeto
03 Aug 2016 09:21
Forum: DOS Batch Forum
Topic: Bat script with some problems (explanation)
Replies: 10
Views: 7064

Re: Bat script with some problems (explanation)

but I see that there are no routines on the verification of the validity of the volume label The validity of the volume label is checked here: if not defined invalid if "!pathName:~1,1!" == ":" ( for /f "tokens=1* delims=abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ&...
by balubeto
01 Aug 2016 02:45
Forum: DOS Batch Forum
Topic: Bat script with some problems (explanation)
Replies: 10
Views: 7064

Re: Bat script with some problems (explanation)

I reread all your posts and hope very much, that this may help you: @echo off setlocal enableExtensions disableDelayedExpansion call :setValidPath "Windows_Files_Path" "%~1" "Enter the directory in which put the content of the ""Windows Setup Media"" vol...
by balubeto
30 Jul 2016 04:04
Forum: DOS Batch Forum
Topic: Bat script with some problems (explanation)
Replies: 10
Views: 7064

Re: Bat script with some problems (explanation)

Some might help correct and complete this script?

Thanks

Bye
by balubeto
26 Jul 2016 04:50
Forum: DOS Batch Forum
Topic: Bat script with some problems (explanation)
Replies: 10
Views: 7064

Bat script with some problems (explanation)

Hi Explanation: I'm trying to create a bat script that will convert an unencrypted esd file, containing four volume images and placed in any directory of a local disk, in an iso image. My script would be this: @echo off &setlocal DisableDelayedExpansion ::http://www.dostips.com/forum/viewtopic.p...
by balubeto
22 Jul 2016 01:53
Forum: DOS Batch Forum
Topic: Complete script with some problems
Replies: 1
Views: 2456

Complete script with some problems

Hi My final script would be this: @echo off &setlocal DisableDelayedExpansion ::http://www.dostips.com/forum/viewtopic.php?p=47747#p47747 :: Post subject: Validity of the directories and files names ::Posted: Wed Jul 13, 2016 12:26 pm by balubeto ::modified: Thu Jul 14, 2016 by thefeduke adding ...