# Utiliser AppleScript avec l'OS invité

Vous pouvez utiliser AppleScript pour ouvrir les différents fichiers et sites Web dans les applications de l'OS invité. Vous pouvez en avoir besoin lors de la création des workflows automatiques.

Pour être plus concret, supposons que vous ayez besoin d'ouvrir un fichier .txt dans le Bloc-notes de Windows à l'aide d'AppleScript (dans AppleScript Editor). La commande a la syntaxe suivante :

```
tell application "Notepad"
open "/Users/username/filename.txt"
end tell
```

Comme exemple d'ouverture d'un site Web dans l'application de l'OS invité, supposons que vous avez besoin d'ouvrir "`www.parallels.com`" dans Microsoft Edge. La commande a la syntaxe suivante :

```
tell application "Microsoft Edge"
open "//www.parallels.com"
end tell
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.parallels.com/landing/pdfm-ug/v20-fr-fr/guide-de-lutilisateur-de-parallels-desktop-pour-mac-20/rubriques-avancees/utiliser-les-machines-virtuelles/utiliser-applescript-avec-los-invite.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
