virtualcenter


Our IT journal

Configuring VPN profiles via CMAK

Sometimes we have to roll out our VPN, and manually creating a profile or asking a user to execute a Powershell script it’s not something we do every day. Instead, Microsoft gave us CMAK – or Connection Manager Administrator Kit, a Windows Feature that can be installed on your Windows Workstation or Server via Windows Features:   Launch cmak, and … Read More


FQDN access RDWeb by default on Windows Remote Desktop Services

We want our default FQDN to go directly to the RD Web Access webpage. This also helps to remember just the domain name and no extra paths. In order to do a redirect, go to your IIS and put a redirect on your Default Web Site:   This will also redirect all HTTP traffic to HTTPS.  


Upgrading Windows Server 2012 2016 Evaluation to fully licensed

You can’t apply a license on top of a 2012/2016 Evaluation as is – you will receive a “Server 2016 Edition cannot be upgraded” message when putting the new key. List current edition dism /online /Get-CurrentEdition In order to apply the key for Standard, you will need to run this DISM command: dism /online /set-edition:ServerStandard /productkey:<yourkey> /accepteula For Datacenter: dism … Read More


Retrieving Active Directory user properties via PowerShell

This is all done via Get-ADUser help Get-ADUser   Get-ADUser -identity username -properties *   get-aduser -filter * -properties passwordlastset, passwordneverexpires |ft Name, passwordlastset, Passwordneverexpires With that in mind, lets see a script that exports all data to a CSV while also sorting the objects by Name:   Get-ADUser -filter * -properties passwordlastset, passwordneverexpires | sort-object name | select-object Name, … Read More


Configuring a Dell iDRAC from Windows via CLI

You can configure the iDRAC from Windows directly to the iDRAC interface via CLI by running the following command, while on the OMSA folder of the server. C:\Program Files\Dell\SysMgt\RAC<versionnumber)\ Set up networking: racadm setniccfg –s <drac ip> <drac subnet mask> <gateway> Example racadm setniccfg -s 192.168.x.x 255.255.255.0 192.168.x.x List users racadm getconfig -g cfgUserAdmin -o cfgUserAdminUserName -i 2 Creating a … Read More


Setting up a catch-all address in Office 365

While this is very straightforward on other platforms, we need to go the extra mile with Office 365. Sometimes we want to receive each misspelled emails or even those sent to nonexistent addresses. e.g. someone sends a message to jonh instead of john, the catch-all address will receive this email. In order to achieve this, we will set up a delivery … Read More


Receive alerts when users try sending undeliverable emails or fails to receive emails in Office 365

Using the admin portal in Office 365, go into Admin – Exchange. Then Protection – Malware Filter – and edit the default rule. Under Administrator Notifications, you will be able to select being notified for inbound and outbound emails.    


USB 3.0 on a Windows 2008 R2 or Windows 7 VM running on VMware Workstation or Player

In order to run USB 3.0 on a Windows 2008 R2 or Windows 7 VM, you will need to first upgrade the hardware version to 12. This method is regardless of the underlying hardware as long as the USB 3.0 device is properly recognized as so in the OS. While you can do the hardware upgrade by editing the VMX … Read More


Adding passthrough disks as RDM on ESXi 6.x

In this example, the client had a need of accessing the disks directly, while sharing a LSI Megaraid controller which was on IT mode. This enabled the controller to have it’s own set of disks in an array, and also 6 disks with 4TB each that were needed as direct disks to the VM. Start by configuring the desired disks … Read More


Changing the default language and timezone for OWA users in Office 365

Connect to O365 via Powershell We will have to define the Language and Timezone first.   get-mailbox | Set-MailboxRegionalConfiguration -Language -TimeZone   For the timezone, select the middle value:   To apply the desired language and timezone for all the mailboxes on your tenant, use the following syntax: get-mailbox | Set-MailboxRegionalConfiguration -Language 1033 -TimeZone “S.A. Eastern Standard Time”     … Read More