# Customize Windows VM Instance with Cloudbase-init

Similar to cloud-init for Linux virtual machines, cloudbase-init can be used for Windows virtual machines.

The below cloudbase script allows you to output some data to a text file:

{% tabs %}
{% tab title="cloudbase" %}

```yaml
rem cmd
rem write all files to C:/pf9-test.txt
set output_file="C:/pf9-test.txt"
echo "Hello world from Platform9!" > %output_file%
ver >> %output_file%
time /T >> %output_file%
tree /A >> %output_file%
dir >> %output_file%
```

{% endtab %}
{% endtabs %}

Sample cloudbase script to change the computer name:

{% tabs %}
{% tab title="cloudbase" %}

```yaml
rem cmd
rem rename the computer to "my-new-hostname"
netdom renamecomputer %COMPUTERNAME% /NewName "my-new-hostname" /force
```

{% endtab %}
{% endtabs %}

More information can be found here: <http://cloudbase-init.readthedocs.org/en/latest/userdata.html>


---

# 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.platform9.com/managed-openstack/5.8/tutorials/tutorials-vm-windows-cloudinit.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.
