|
I'm trying to use a script for formatting cache drives, or F: drive, but they don't seem to be doing anything... maybe I'm overlooking something....
| CODE | In MXM.xml:
<ActionScript name="FormatCache"> ALLOWFORMAT <1> format X: format y: format z: delete e:\cache ALLOWFORMAT <0> </ActionScript>
<ActionScript name="FormatF"> Callscript _DisplayMessageBox "This will completely destroy all data on F: $eol$Press A to continue, or any other button to exit..." If %_GP_A% == "1" GOTO APRESSED Quit
:APRESSED ALLOWFORMAT <1> format f: ALLOWFORMAT <0> </ActionScript>
|
| CODE | In MENU.xml:
<SubMenu> <Title>System Utilities</Title> <Description>Advanced Options</Description> <Item> <Title>Format Cache Drives</Title> <Description>Repairs System Cache</Description> <Action> CallScript FormatCache </Action> </Item> <Item> <Title>Format F: Drive</Title> <Description>Completely Erases F:</Description> <Action> CallScript FormatF </Action> </Item> </SubMenu>
|
Any info is appreciated
This post has been edited by Agent Orange: Sep 16 2004, 03:12 AM
|