Custom Engine Agents in Microsoft 365 Copilot

Agents in BizChat has been available for some time already, but now there is an upcoming update to Agents. The introduction of “ custom engine agents ” in Microsoft 365 Copilot! These specialized agents can be built on any large language model (LLM), toolchain, or orchestration tool, tailored specifically for your domain or tenant workflows. Initially supported in Microsoft Teams, this feature will soon be available in Microsoft 365 Copilot Business Chat ( BizChat ).   The introduction of Custom engine agents enables your organization to create customized experiences using your own AI systems and orchestrators. You can design unique prompts, connect to any LLM, and integrate these custom agents with Microsoft 365 Copilot. After the rollout, users will be able to access these agents, provided they are enabled and deployed in the Microsoft 365 admin center under the Copilot tab.   You can read more about the feature on this page . Eligible users can create agents using Micros...

Lost in the virtual time....

No, this isn't a sci-fi blog. It's about windows time in a virtual environment. Some applications depend on the computers having the same time. And this is no problem if all virtual machines are running on the same host. But in my case, I have a one server running virtual servers, and one or more computers running virtualPC images to access the VM's on the server.
Now, in a perfect scenario, all computers should have the same time scource (At least within the same campus). But as in my case, the lab is totally isolated. Time servers are not available to the hostserver or the vm's (who always, unless told otherwise sync with host-time).
I have recently discovered a way to stop the virtual pc from syncing the hostoperating system. There is no gui for this, and you have to turn your VM off first. Then edit the .vmc file:
Find the section of the .VMC file that looks like this:
<integration>
<microsoft>
<mouse>
<allow type="boolean">true</allow>
</mouse>
</microsoft>
</integration>
Change it to look like this:
<integration>
<microsoft>
<mouse>
<allow type="boolean">true</allow>
</mouse>
<components>
<host_time_sync>false
</enabled>
</host_time_sync>
</components>

Restart the virtual machine, and set any time you like. Very handy, also when testing betas that have expired ;)