User Profile
carlintveld
Brass Contributor
Joined Nov 16, 2016
User Widgets
Recent Discussions
Looking for ISVs with managed app experience
Hi dear ISVs! Together with an ISV in the Netherlands we are planning a commercial marketplace managed app deployment. We are looking for ISVs out there who are willing to share their experiences with us. In particular we would like to learn how you are taking care of lifecycle management of your stateful deployments. How to provide a new version of your software without losing the customer's data.Re: Multiple Instances of Microsoft Teams Application
In the meanwhile Microsoft has migrated feature requests to another platform. Can you share an updated link? It would be so cool if Microsoft were to adapt some kind of tenant federation. Just put all chats and groups in the same view across all tenants. But then, what about data protection 🙂112KViews0likes0CommentsWindows 11 desktop icons not functioning
Strangely the desktop icons now take full width of the screen as a tile. Somehow this blocks any positioning of the icons. They all collide in the top center of the screen. See attached video. Using build 10.0.22000 Checked Windows Update for any pending updates999Views0likes1CommentRe: PowerShell: Find VNet of an ARM VM
I have revised the script with the following guidance: No looping No dependencies on additionally required pieces of information, e.g. resource group $vm = get-azvm -name azpbagentdvm01 $nic = get-aznetworkinterface -resourceid $vm.NetworkProfile[0].NetworkInterfaces[0].Id $subnetresourceid = $nic.IpConfigurations[0].Subnet.id $split = $subnetresourceid.split("/") $vnetresourceid = [string]::Join("/", $split[0..($split.Count - 3)]) Or you could just pick the resource group and vnet name with `$subnet.split("/")[4]` and `$subnet.split("/")[8]`. Obviously this solution assumes a particular structure of the subnet resourceid. I wonder if there is a utility function in the Az modules package somewhere that helps with that. /subscriptions/<guid>/resourceGroups/<resourcegroupname>/providers/Microsoft.Network/virtualNetworks/<vnetname>/subnets/<subnetname>5KViews0likes0Comments
Recent Blog Articles
No content to show