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 […]
Category: Technical
Quick an simple power shell line to list all shared mailboxes in your Exchange 2013 environment. Get-Mailbox -ResultSize Unlimited -RecipientTypeDetails SharedMailbox What’s a Shared Mailbox A shared mailbox is a mailbox that multiple users can use to read and send email messages. Shared mailboxes can also be used to provide a common calendar, allowing […]
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 […]
I am looking for a way to run a instance and have it revert back to its snapshot every 24 hours. I started toying around with the idea to use the vim-cmd features however there doesn’t seem to be a way to set a task for this. So far here are the steps I used […]