Copying macOS app bundle file(s) from Mac to Windows

From RAD Studio
Jump to: navigation, search

Go Up to Working with a Mac and a PC


RAD Studio creates the app bundle for macOS applications on Mac machines. However, you can copy any of these app bundle files back to a Windows machine using the paclient.exe command.

App binary

Use de following paclient.exe command to copy the app binary from a Mac to a Windows machine.

<bds>\bin\paclient.exe --get=./<project>.app/Contents/MacOS/<project>,<location in your windows machine>
<profile-name>

Example

paclient.exe --get=./Project79.app/Contents/MacOS/Project79,c:\users\testuser\Documents\Embarcadero\Studio\Projects\OSXARM64\release device3

App bundle

Use the following paclient.exe command to copy the app bundle from a Mac to a Windows machine.

<bds>\bin\paclient.exe --get=./<project>.app/**/*,<location in your windows machine>\<project>.app  <profile-name>

Example

paclient.exe --get=./Project79.app/**/*,c:\users\testuser\Documents\Embarcadero\Studio\Projects\OSXARM64\release\Project79.app device3

See Also