I have no idea how to make script files in osx. I what i'm trying to do is make a script that delete the boot.ini file off my hard drives then replaces it with a new file.
this is what i would make it look like in a windows bat file
Quote:
Process.Start("cmd")
del "c:boot.ini"
copy "c:winboot.ini" "c:boot.ini"
shutdown -r -t 01
|
My home server is dual booting XP and OSX. i'm trying to make a simple script that will swap out my boot.ini file so i can remotely reboot the computer into the other system. It works in windows but i'm new to mac.