Sometimes we publish applications on the web front end, but we also want to give clients the option on launching an RDP session directly from the website. For doing that we need to change a registry and reboot the server: HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Terminal Server\CentralPublishedResources\PublishedFarms\<collection>\RemoteDesktops\<collection> Change ShowInPortal from “0” to “1”.
Start by installing the certificate on the Local Machine Personal folder. Do an export to a PFX file including the private key. Access the certificate and retrieve its thumbprint from its properties. Download the following script and save it in the destination server. Use your thumbprint to enable the new certificate
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
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.
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
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
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
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
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.
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