dkape | Salut !
Quel est le language utilisé ?!? Merci du coup de pouce !
Code :
- :start
- cls
- print ==========
- print Setup Menu
- print ==========
- print =========================
- print Utilitaires de disques
- print =========================
- print 1. IBM Drive Fitness Test
- print 2. Hitachi Disk Manager
- print 3. Maxtor Power Max
- print 4. Seagate Disk Manager
- print =========================
- print Gestion de partitions
- print =========================
- print 5. Partition Magique 8
- print 6. Volume Manager Server 7
- print =========================
- print Image disques
- print =========================
- print 7. Drive Image 2002
- print 8. Norton Ghost 2002
- print 9. Norton Ghost 2003
- print
- print Esc) Boot from hard disk...
- print
- print
- print Enter a choice:
- print Default is Esc
- print Timeout is 60 seconds
- :mainkey
- ; timeout is 60 seconds, default key is escape
- getkey 25 esc
- rem Utilitaires de disques
- onkey 1 goto Dft
- onkey 2 goto Hitachi
- onkey 3 goto Maxpm
- onkey 4 goto Seagdm
- rem Gestion de partitions
- onkey 5 goto Pm8
- onkey 6 goto vm7
- rem Image disques
- onkey 7 goto dima
- onkey 8 goto Ghost
- onkey 9 goto ghost03
- rem Divers
- onkey f1 goto help
- onkey esc boot 80
- ; When no key found...
- goto mainkey
- ;
- :Dft
- run Dft.IMA
- ; when run has failed
- print
- print Failed to run "Dft.IMA", hit any key.
- getkey
- goto start
- ;
- :Hitachi
- run Hitachdm.IMA
- ; when run has failed
- print
- print Failed to run "Hitachdm.IMA", hit any key.
- getkey
- goto start
- ;
- :Maxpm
- run Powermax.IMA
- ; when run has failed
- print
- print Failed to run "Powermax.IMA", hit any key.
- getkey
- goto start
- ;
- :Seagdm
- run Seagdm.IMA
- ; when run has failed
- print
- print Failed to run "Seagdm.IMA", hit any key.
- getkey
- goto start
- ;
- :Pm8
- run Pq8.IMA
- ; when run has failed
- print
- print Failed to run "Pq8.IMA", hit any key.
- getkey
- goto start
- ;
- :vm7
- run VManage.IMA
- ; when run has failed
- print
- print Failed to run "VManage.IMA", hit any key.
- getkey
- goto start
- ;
- :dima
- run DRima.IMA
- ; when run has failed
- print
- print Failed to run "DRima.IMA", hit any key.
- getkey
- goto start
- ;
- :Ghost
- run Ghost.IMA
- ; when run has failed
- print
- print Failed to run "Ghost.IMA", hit any key.
- getkey
- goto start
- ;
- :ghost03
- run Ghost03.IMA
- ; when run has failed
- print
- print Failed to run "Ghost03.IMA", hit any key.
- getkey
- goto start
- ;
|
|