Working to apply bulk apply licenses I stumbled upon some useful commands to list the licenses assigned to my Office 365 Account. The following command will list account Sku ID’s along with the active and consumed units. Best of all list them in a nice grid view Get-MsolAccountSku |Out-GridView We can also pull the subset […]
Category: Software
Looking for a method to restart a non-persistent environment in ESXi or vCenter, I was able to use PowerCLI to issue the commands needed. Originally I was looking to automate the recovery of a snapshot when it dawned on me that a non-persistent disk would facilitate the same thing. However I would need to power off the server […]
This is an error I’ve received when running a cut-over migration batch in Office 365. Error: ProvisioningFailedException: The parameters passed to the cmdlet represent a managed account, which doesn’t match the namespace state, which is federated. I’ve reached out to support, to help me troubleshoot this. So far there hasn’t been much I’ve been able to find online […]
Windows Server 2012 R2 Server Core is installed and now its time to change the hostname from the install default. To change the hostname I will issue the following command: netdom renamecomputer [oldhostname] /newname [newhostname] You will get the following message once completed: Certain services, such as the Certificate Authority, rely on a fixed machine name. […]
After my install of Windows Server 2012 R2 Server Core, I wanted to manage the system via RSAT and Remote Desktop. However the firewall was preventing me from completing such tasks. That said, this is how we can disable the firewall From the command prompt type the following command: netsh advfirewall set allprofiles state off […]
After installing Windows Server 2012 R2 Server Core as a guest in my VMware Lab I wanted install the VMware software tools that enhances the performance of the guest operating system and improves management of the virtual machine. To do this I logged into the console via the vCenter Client were I could access the server […]