MrVietA2 Posted October 27, 2012 Posted October 27, 2012 Hi everyone ! I try to mount a ISO file to virtual Disk but I can't find any solution. Please help me to find the answer ! Thanks
MrVietA2 Posted October 27, 2012 Author Posted October 27, 2012 I find something like this : 3) Command-line support - A program named isocmd.exe is located in "C:Program FilesUltraISOdrivers" folder, you can use it to mount/unmount ISOs to ISODrive - Print ISODrive letters isocmd -print - Mount command isocmd -mount drive: file_spec Example: isocmd -mount L: "d:isosmycd.iso" - Unmount command isocmd -eject drive: Example: isocmd -eject L: - Change drive letter of ISODrive isocmd -change device# driveLetter: Example: isocmd -change 1 F: $image = "D:Software FullNew folderVS2010Express1.iso"; Disc Image To Load ; Mount CDDVD Image ; RunWait('isocmd- mount F: ' & '"' & $image & '"' ) doesn't work ; RunWait('C:Program FilesUltraISOdriversIsoCmd.exe isocmd- mount F: ' & '"' & $image & '"' ) doesn't work How can I use autoit to do it ?
GordonFreeman Posted October 27, 2012 Posted October 27, 2012 To run DOS commands, try RunWait(@ComSpec & " /c " & "commandName") ; don't forget " " before "/c" MrVietA2 1 Frabjous Installation
ripdad Posted October 27, 2012 Posted October 27, 2012 Try this... Local $image = 'D:Software FullNew folderVS2010Express1.iso'; Disc Image To Load RunWait('C:Program FilesUltraISOdriversIsoCmd.exe -mount F:"' & $image & '"' ) MrVietA2 1 "The mediocre teacher tells. The Good teacher explains. The superior teacher demonstrates. The great teacher inspires." -William Arthur Ward
GordonFreeman Posted October 27, 2012 Posted October 27, 2012 EZB Topic says 3) Command-line support - A program named isocmd.exe is located in "C:Program FilesUltraISOdrivers" folder, you can use it to mount/unmount ISOs to ISODrive - Print ISODrive letters isocmd -print - Mount command isocmd -mount drive: file_spec Example: isocmd -mount L: "d:isosmycd.iso" - Unmount command isocmd -eject drive: Example: isocmd -eject L: - Change drive letter of ISODrive isocmd -change device# driveLetter: Example: isocmd -change 1 F: MrVietA2 1 Frabjous Installation
MrVietA2 Posted October 28, 2012 Author Posted October 28, 2012 I found the answer here : Local $image = 'D:Software FullNew folderVS2010Express1.iso'; Disc Image To Load ;~ RunWait() ShellExecute('C:Program FilesUltraISOdriversIsoCmd.exe', '-mount G: ' & '"' & $image & '"' ) Thanks all
AZJIO Posted October 29, 2012 Posted October 29, 2012 (edited) ; Run('imdisk.exe -a -f dvd.iso -m #:') Run('imdisk.exe -a -f dvd.iso -m w:') Sleep(15000) Run('imdisk -d -m w:') Edited October 29, 2012 by AZJIO My other projects or all
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now