ARCHIVE

Mac OS 8.5: Disabling File Exchange Without Restarting

  • Last Modified: January 11, 2004
  • Article: TA37527
  • Old Article: 24741
This article has been archived and is no longer updated by Apple.
The PC Exchange control panel had On and Off buttons so that you could temporarily disable the mounting of DOS media without disabling the control panel and rebooting. These buttons are not present in File Exchange. Is there a way to disable File Exchange without using Extensions Manager and restarting?

Products Affected

Mac OS 8.5

File Exchange does not have On and Off buttons, but you can still turn it on and off by using AppleScript. Here are scripts that enable and disable the PC file system.

To enable the PC file system, enter the following in Script Editor and run it.

tell application "File Exchange"
 set PC file system enabled to true
end tell

To disable the PC file system, enter the following in Script Editor and run it.

tell application "File Exchange"
 set PC file system enabled to false
end tell

If you need to disable File Exchange often, you may want to save the two scripts as applications.
Not helpful Somewhat helpful Helpful Very helpful Solved my problem