Results 1 to 13 of 13
Thread: . ?
Hybrid View
-
17th July 2009 18:35 #1Registered User
Join Date: Mar:2008
Location: BG
Posts: 162
. ?
. . . ... , . , .
.
... .
, .
:
start setup_magicdisc.exe /s ; -- magicdisc
pause ;
miso.exe NULL -sdrv 2 ; 2...
miso.exe NULL -vlist ;
[1] (j
[2] (k
pause ; ?
. .
, 1 j j . .
miso.exe NULL -mnt j: "c:\9N1.iso" ;
pause;
miso.exe NULL -umnt j: ;
miso.exe NULL -sdrv 0 ;
start C:"\Program Files\MagicDisc\"UNWISE.EXE /s ;
C:"\Program Files\MagicDisc"INSTALL.LOG /s ; (
miso.exe NULL -d C:"\Program Files\"MagicDisc ; MagicDisc
pause
------------------------------------------------------
e CMD :
------------------------------------------------------
C:\>start setup_magicdisc.exe /s
C:\>pause
Press any key to continue . . .
C:\>miso.exe NULL -sdrv 1
MagicISO Console v3.1.113
Copyright 2002, 2003, 2004, 2005, 2006, 2007 MagicISO Inc.
This is unregistered version, Can't Save or burn an image greater than 300MB
Creating virtual drives ... Ok
C:\>miso.exe NULL -vlist
MagicISO Console v3.1.113
Copyright 2002, 2003, 2004, 2005, 2006, 2007 MagicISO Inc.
This is unregistered version, Can't Save or burn an image greater than 300MB
The following is all of the present virutal CD/DVD drivers.
[1] No Media (J
C:\>pause
Press any key to continue . . .
C:\>miso.exe NULL -mnt j: "c:\9N1.iso"
MagicISO Console v3.1.113
Copyright 2002, 2003, 2004, 2005, 2006, 2007 MagicISO Inc.
This is unregistered version, Can't Save or burn an image greater than 300MB
C:\>pause
Press any key to continue . . .
C:\>miso.exe NULL -umnt j:
MagicISO Console v3.1.113
Copyright 2002, 2003, 2004, 2005, 2006, 2007 MagicISO Inc.
This is unregistered version, Can't Save or burn an image greater than 300MB
C:\>miso.exe NULL -sdrv 0
MagicISO Console v3.1.113
Copyright 2002, 2003, 2004, 2005, 2006, 2007 MagicISO Inc.
This is unregistered version, Can't Save or burn an image greater than 300MB
Disabling virtual drives ... Ok
C:\>start C:"\Program Files\MagicDisc\"UNWISE.EXE /s
C:\>C:"\Program Files\MagicDisc"INSTALL.LOG /s
'C:"\Program Files\MagicDisc"INSTALL.LOG' is not recognized as an internal or ex
ternal command,
operable program or batch file.
C:\>miso.exe NULL -d C:"\Program Files\"MagicDisc
MagicISO Console v3.1.113
Copyright 2002, 2003, 2004, 2005, 2006, 2007 MagicISO Inc.
This is unregistered version, Can't Save or burn an image greater than 300MB
C:\>pause
Press any key to continue . . .
. .
-
17th July 2009 20:58 #2
- batch + . . . , .

Code:@echo off goto menu :menu echo. echo What would you like to do? echo. echo Choice echo. echo 1 Option 1 echo 2 Option 2 echo 3 Option 3 echo 4 Quit echo. :choice set /P C=[1,2,3,4]? if "%C%"=="4" goto quit if "%C%"=="3" goto opt3 if "%C%"=="2" goto opt2 if "%C%"=="1" goto opt1 goto choice :opt1 start Program1.exe goto menu :opt2 start Program2.exe goto menu :opt3 start Program3.exe goto menu :quit exit :end
!
-
18th July 2009 11:23 #3Registered User
Join Date: Oct:2003
Location:
Posts: 4,317
"Set /p" DOS. 6 choice. - "bat file menu"
-
18th July 2009 12:08 #4
-
18th July 2009 13:08 #5Registered User
Join Date: Mar:2008
Location: BG
Posts: 162
. .
.
echo Choice
echo.
echo 1 Mount ISO
echo 2 Quit
echo.
:choice
set /P C=[2,i,k,...,z]?
if "%C%"=="i" goto opt1
if "%C%"=="k" goto opt1
if "%C%"=="2" goto quit
goto choice
pt1
miso.exe NULL -mnt "%C%": "c:\Soft.iso"
goto menu
pause
:
if "%C%"=="i" goto opt1 : . ---- goto opt1
-
18th July 2009 14:57 #6
, , . :
set /P C=Choose drive letter...
, , :
"pause ; ?"
. . , . , pause :
IF EXIST . . . T - NUL . - , . , .Code::choice set /P C=Choose drive letter... IF EXIST %C%:\nul GOTO end ECHO. ECHO The drive %C%: does not exist. Enter valid one from the list above. ECHO. goto choice :end
Last edited by pimpirlit; 18th July 2009 at 15:07.
!
-
18th July 2009 18:00 #7Registered User
Join Date: Oct:2003
Location:
Posts: 4,317
-
18th July 2009 18:16 #8Registered User
Join Date: Mar:2008
Location: BG
Posts: 162
.... ...


: The drive %C%: does not exist. Enter valid one from the list above.
ECHO.Last edited by milenk; 18th July 2009 at 18:21.
-
18th July 2009 18:28 #9
-
18th July 2009 18:36 #10Registered User
Join Date: Mar:2008
Location: BG
Posts: 162
ECHO OFF
CLS
start setup_magicdisc.exe /s /w
:MENU
pause
miso.exe NULL -sdrv 2
miso.exe NULL -vlist
:choice
set /P C=Choose drive letter...
IF EXIST %C%:\NUL GOTO end
ECHO.
ECHO The drive %C%: does not exist. Enter valid one from the list above.
ECHO.
goto choice
:end
miso.exe NULL -mnt %C%: "c:\Soft.iso"
pause
miso.exe NULL -umnt j:
miso.exe NULL -sdrv 0
start C:"\Program Files\MagicDisc\"UNWISE.EXE /s
C:"\Program Files\MagicDisc"INSTALL.LOG /s
rmdir "C:\Program Files\MagicDisc"
-
18th July 2009 19:20 #11
miso ( ). , . ( ). .. :
Code:@ECHO OFF CLS setup_magicdisc.exe /s /w miso.exe NULL -sdrv 2 miso.exe NULL -vlist SET /P C=Choose drive letter from the list above... miso.exe NULL -mnt %C%: "c:\Soft.iso" PAUSE miso.exe NULL -umnt j: miso.exe NULL -sdrv 0 START "C:\Program Files\MagicDisc\UNWISE.EXE" /S /Z "C:\Program Files\MagicDisc\INSTALL.LOG"
!
-
19th July 2009 14:39 #12Registered User
Join Date: Mar:2008
Location: BG
Posts: 162
miso.exe e MagicIso.
, .
--- miso.exe -- .
(C) Copyright 1985-2001 Microsoft Corp.
C:\Documents and Settings\Baba>cd \
C:\>miso
MagicISO Console v3.1.113
Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 MagicISO Inc.
This is unregistered version, Can't Save or burn an image greater than 300MB
Usage: miso Imagefile [commands]
Commands:
-f dir Set the working directory in ImageFile, Default: \ (Root)
-a file/folder Add files/folders into ImageFile
-x dir [wildcard] Extracting files and folders with subfolder from
ImageFile to directory
-c foldername create new folder
-d wildcard Delete the files/folders
-l VolumeLabel Set volume label into image file
-aj Create Joliet Volume
-rj Remove Joliet Volume
-au Create UDF Volume
-au+ Create UDF Volume only
-ru Remove UDF Volume
-ar Create Rock Ridge Volume
-rr Remove Rock Ridge Volume
-ah Create Apple HFS
-rh Remove Apple HFS
-ah+ Create Apple HFS+
-rh+ Remove Apple HFS+
-ab BootFile Make bootable iso file
-rb Remove bootable information from ISO file
-l1 -l1 = ISO Level 1(DOS: Max. of 11 = 8+3 chars)
-l2 -l2 = ISO Level 2(Windows/Unix: Max. of 31 chars)
-l3 -l3 = ISO 9660:1999 v2 (Max. of 207)
-k1 Convert all letters in FileName to uppercase
-k2 Keep the original FileName
-k3 Convert all letters in FileName to lowercase
-cd List all of the present CD/DVD driver
-py Yes for all queries.
-pn No for all queries.
-b [CDID] Burn CD/DVD by the specified CD/DVD-R/RW driver
-e [CDID] Erase CD-RW/DVD-RW
-be [CDID] If necessary, Erase CD-RW/DVD-RW before burning
-i [CDID] Make ISO image from CD/DVD-ROM
-h+ wildcard Hide files and folders
-h- wildcard Unhide files and folders
-conv [fmt] SrcFile Converting CD/DVD image
Commands to control MagicDisc virtual CD/DVD-ROM:
-mnt [id] File Mount CD/DVD image to the virtual CD/DVD-ROM which is
specficied by id.
-umnt [id] File Unmount the virtual CD/DVD-ROM which is specficied by id.
-sdrv Number Set number of virtual drives. 0 to disable.
-vlist List all virtual drives.
Examples:
miso tools.iso -c tools -c "back up\magiciso" -l "TOOLS CD"
1. Create tools folder in root directory
2. Create magiciso folder in "back up" folder
3. Set volume label to "TOOLS CD".
4. If tools.iso is not exist, then create tools.iso.
miso tools.iso -f tools -a *.exe -a "c:\compiler tools"
1. Add *.exe files into \tools
2. Add "c:\compiler tools" directory into \tools
miso tools.iso -f tools -x c:\tools *.exe
1. Extracting \tools\*.exe (with subfolder) to c:\tools
miso tools.iso -d *.exe
1. Delete \*.exe
miso tools.iso -f "back up\magiciso" -d *.exe
1. Delete "\back up\magiciso\*.exe"
miso tools.iso -d *
1. Empty tools.iso
miso.exe tools.iso -cd
1. List all of the present CD/DVD driver
Please notes: miso.exe ignores the "tools.iso" parameters.
miso.exe tools.iso -e 2
1. Erase CD-RW/DVD-RW disc in the second DVD writer on the system.
miso.exe tools.iso -b 2 -c tools -c "back up\magiciso" -l "TOOLS CD"
1. If tools.iso doesn't exist, then create tools.iso.
2. Create "tools" folder into root directory of iso image file.
3. if "back up" folder doesn't exist, then create "back up" folder
into root directory of iso image file first. After that, miso creates
"magiciso" folder into "back up" folder.
4. Set volume label of iso image file to "TOOLS CD".
5. Save tools.iso
6. Burn tools.iso onto CD or DVD by the second DVD writer on the system.
miso tools.iso -be 2 -f tools -a *.exe -a "c:\compiler tools"
1. If tools.iso doesn't exist, then create tools.iso.
2. Set "\tools" folder to the current working folder.
3. Add "*.exe" files into "\tools" folder
4. Add "c:\compile tools" folder into "\tools" folder.
5. Save tools.iso
6. Check disc in the second DVD writer on the system, if it is not blank,
miso.exe will force to erase.
7. Burn tools.iso onto CD or DVD by the second DVD writer on the system.
miso tools.iso -i 1 -a *.dat
1. Make ISO image(tools.iso) from the first CD/DVD-ROM.
2. Add *.dat into tools.iso.
3. Save tools.iso
miso tools.iso -f tools -h+ *.sys
1. Hide *.sys in \tools folder
miso tools.iso -conv iso tools.mds
1. Convert tools.mds/tools.mdf to tools.iso with ISO format
miso tools.nrg -conv nrg tools.iso
1. Convert tools.iso to tools.nrg with NRG format
miso tools.cue -conv cue tools.iso
1. Convert tools.iso to tools.bin/tools.cue with cue/bin format
miso NULL -vlist
1. List all of the present virtual CD/DVD driver
Please notes: miso.exe ignores the "NULL" parameters.
miso NULL -sdrv 3
1. Create 3 virtual drives.
Please notes: miso.exe ignores the "NULL" parameters.
miso NULL -sdrv 0
1. Disable virtual drives.
Please notes: miso.exe ignores the "NULL" parameters.
miso NULL -mnt j: "c:\backup\1.uif"
1. mount "c:\backup\1.uif" to virtual drive j: .
Please notes: miso.exe ignores the "NULL" parameters.
miso NULL -umnt j:
1. Unmount virtual drive j: .
Please notes: miso.exe ignores the "NULL" parameters.
C:\>
---------- 14:39 ---------- 19:45 ----------
....
.
@ECHO OFF
CLS
setup_magicdisc.exe /s /w
miso.exe NULL -sdrv 2
miso.exe NULL -cd
miso.exe NULL -vlist
ECHO.
SET /P C=Choose drive letter from the list above:
ECHO.
SET /P m=Choose -- Source -- drive letter :
miso.exe NULL -mnt %C%: "%m%:\Soft.iso"
PAUSE
miso.exe NULL -umnt %C%:
miso.exe NULL -sdrv 0
start C:"\Program Files\MagicDisc\"UNWISE.EXE /s
C:"\Program Files\MagicDisc"INSTALL.LOG /s
rmdir "C:\Program Files\MagicDisc"
-
22nd July 2009 11:38 #13Registered User
Join Date: Mar:2008
Location: BG
Posts: 162

. ... .
@ECHO OFF
CLS
setup_magicdisc.exe /s /w
miso.exe NULL -sdrv 2
miso.exe NULL -cd
:TARGET
miso.exe NULL -vlist
ECHO.
SET /P C=Choose drive letter from the list above :?
ECHO.
:choice
SET /P m=Choose -= Source =- drive letter :?
IF EXIST "%m%:\9N1.iso" GOTO ok
ECHO.
ECHO The -== %m% ==- is not a valid drive letter
ECHO.
goto choice
:ERROR
ECHO.
ECHO -== %C% ==- is not a valid Virtual drive letter
GOTO TARGET
k
miso.exe NULL -mnt %C%: "%m%:\9N1.iso"
IF NOT EXIST %C%:\"XPPR.BIN" GOTO ERROR
PAUSE
miso.exe NULL -umnt %C%:
miso.exe NULL -sdrv 0
start C:"\Program Files\MagicDisc\"UNWISE.EXE /s
C:"\Program Files\MagicDisc"INSTALL.LOG /s
rmdir "C:\Program Files\MagicDisc"
...




Reply With Quote


7th May 2023, 16:02 in PC