Hi! I'm using cloudbase-init in this environment:
- Windows Server 2016 with all available updates installed
- sysprepped Windows Server 2016 with
sysprep.exe /generalize /oobe /shutdown /unattend:Unattend.xml
- Network with static ipv4 address
- Cloudbase-init 1.1.2 stable x64
- NoCloudConfigDrive (iso image called cidata)
- power shell localscripts are in a dedicated folder of cidata iso image (D:\localscripts)
These are the steps executed automatically:
- Windows server 2016 starts asking to change Administrator password
- After a couple of minutes it reboots automatically (thanks to delayed start). Now I can login with both "Administrator" and "Boris" accounts with the passwords defined in user-data
- After a couple of minutes it reboots again (when It runs local scripts)
- Now I cannot login anymore as Administrator, because password is changed <---- WHY????
I'm having lot of troubles posting in this text editor, so I added a link at the end of the post to download all files.
These are my Configuration files: - config-init.conf
[DEFAULT]
username=Administrator
groups=Administrators
inject_user_password=true
first_logon_behaviour=no
config_drive_raw_hhd=true
config_drive_cdrom=true
config_drive_vfat=true
bsdtar_path=C:\Program Files\Cloudbase Solutions\Cloudbase-Init\bin\bsdtar.exe
mtools_path=C:\Program Files\Cloudbase Solutions\Cloudbase-Init\bin\
verbose=true
debug=true
logdir=C:\Program Files\Cloudbase Solutions\Cloudbase-Init\log\
logfile=cloudbase-init.log
default_log_levels=comtypes=INFO,suds=INFO,iso8601=WARN,requests=WARN
logging_serial_port_settings=
mtu_use_dhcp_config=false
ntp_use_dhcp_config=false
local_scripts_path=D:\localscripts\
metadata_services=cloudbaseinit.metadata.services.nocloudservice.NoCloudConfigDriveService
plugins=cloudbaseinit.plugins.common.sethostname.SetHostNamePlugin,
cloudbaseinit.plugins.windows.createuser.CreateUserPlugin,
cloudbaseinit.plugins.common.networkconfig.NetworkConfigPlugin,
cloudbaseinit.plugins.common.userdata.UserDataPlugin,
cloudbaseinit.plugins.common.setuserpassword.SetUserPasswordPlugin,
cloudbaseinit.plugins.common.localscripts.LocalScriptsPlugin
allow_reboot=true
stop_service_on_exit=false
check_latest_version=false
config-init-unattend.conf
[DEFAULT] injectuserpassword=false firstlogonbehaviour=no configdriverawhhd=true configdrivecdrom=true configdrivevfat=true bsdtarpath=C:\Program Files\Cloudbase Solutions\Cloudbase-Init\bin\bsdtar.exe mtoolspath=C:\Program Files\Cloudbase Solutions\Cloudbase-Init\bin\ verbose=true debug=true logdir=C:\Program Files\Cloudbase Solutions\Cloudbase-Init\log\ logfile=cloudbase-init-unattend.log defaultloglevels=comtypes=INFO,suds=INFO,iso8601=WARN,requests=WARN loggingserialportsettings= mtuusedhcpconfig=false ntpusedhcpconfig=false localscriptspath=C:\Program Files\Cloudbase Solutions\Cloudbase-Init\LocalScripts\ metadataservices= plugins= allowreboot=true stopserviceonexit=false checklatest_version=false
Unattend.xml (no changes, I'm using the default file provided by Cloudbase-init)
File in cidata iso image:
user-data:
cloud-config
hostname: windows-server users:
- name: Administrator passwd: Password1! primary_group: Administrators
- name: Boris passwd: Password1! primary_group: Users
meta-data:
instance-id: b4883f9ee294 network-interfaces: | auto Ethernet iface Ethernet inet static address 192.168.100.30 network 192.168.100.0 netmask 255.255.255.0 broadcast 192.168.100.255 gateway 192.168.100.234 hwaddress ether 02:00:00:84:fa:04 dns-nameservers 1.1.1.1
localscripts/powershell.ps1
ps1_sysnative
// do something only to try localscripts: Get-CimClass -ClassName Win32_*System
exit 1001
I also configure Cloudbase-init with delayed-auto in this way:
sc.exe config "cloudbase-init" start= delayed-auto
Here you can download my .conf and .log files: HERE
Thank you.