Hi,
currently, I want to create a Workflow with the vRealize Orchestrator and I want to transfer input parameters into the MDT (Microsoft Deployment Tool) database, so the MDT can start a automated Windows Server installation.
This is how it should work:
I create a new VM and the created MacAdress of the first Adapter should be added to the MDT SQL table, so the WindowsPE from the MDT recognize, which settings should be applied.
I also want to implement the input parameters like computername, etc into the MDT database.
The problem now is, that I want to add the MacAddress to the table with the macadresse and after adding it, I want to select the newly created ID, with the creation of the MacAddress, after that I want to use this newly created ID and add it into another table, so the system understand, that the values are connected from the both tables.
I was able to add the MacAddress with the workflow "Create active record for 'tablename'. And the SQL Server generated the next free ID. Now I want to take this newly created ID and add it into another table with other values, how can I do that? If I use the workflow "Read active record for 'tablename', i just get a array, but I don't know how to use this result as a string (ID), so I can connect it to the next "create active record..." workflow.
Thanks you, I hope you understand, what I mean .