Customize a Windows Virtual Machine 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:

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%

Sample cloudbase script to change the computer name:

rem cmd
rem rename the computer to "my-new-hostname"
netdom renamecomputer %COMPUTERNAME% /NewName "my-new-hostname" /force
More information can be found here: http://cloudbase-init.readthedocs.org/en/latest/userdata.html

The browser you are using is outdated. For the best experience please download or update your browser to one of the following:

Learn the FinOps best practices to maximize your cloud usage & budget:Register Now
+