Jump to content

Recommended Posts

Posted

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 ?

Posted

Try this...

Local $image = 'D:Software FullNew folderVS2010Express1.iso'; Disc Image To Load
RunWait('C:Program FilesUltraISOdriversIsoCmd.exe -mount F:"' & $image & '"' )

"The mediocre teacher tells. The Good teacher explains. The superior teacher demonstrates. The great teacher inspires." -William Arthur Ward

Posted

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:

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...