Others

Deploy Windows 2019 RDS in WorkGroup without AD

Steps to deploy Windows 2019 RDS in Workgroup without AD Install a Fresh Windows 2019 Standard Server with Full GUI Enable Remote Desktop Session Host & Remote Desktop Licensing Only Import-Module ServerManager Add-WindowsFeature -Name RDS-Licensing, RDS-RD-Server -IncludeManagementTools Restart Server Restart-Computer Create a Local User and add it to Local Remote Desktop Users Group $Password = …

Deploy Windows 2019 RDS in WorkGroup without AD Read More »

Deploy Java with GPO

Steps to deploy Java with GPO to client machines automatically Register a free Oracle account and download Java Runtime 6u27-Windows x86 Offline . Double click on the downloaded exe file and stop at the screen below Copy the MSI & CAB files from %userprofile%\appdata\locallow\Sun\Java and save it in C:\Temp Download and install Orca MSI Editor …

Deploy Java with GPO Read More »

Move Mailbox to Office 365 with PowerShell

Refer to the steps below on how to Move Mailbox to Office 365 with PowerShell Prepare a csv file EmailAddress [email protected] [email protected] The header for this column must be named EmailAddress Assign Office 365 License to all users listed in the CSV file #Assign License $Users = Import-Csv "C:\Temp\MailboxToMigrate.csv" $AccountSKU = Get-MsolAccountSku | ? AccountSkuID …

Move Mailbox to Office 365 with PowerShell Read More »

Generate SSL Certificate with PowerShell

Steps to Generate SSL Certificate with PowerShell Replace the $CommonName & $SANNames with your own FQDN to be included in SSL Certificate #Prepare CSR File with SAN $CommonName = "webmail.aventislab.com" $SANNames = @("autodiscover.aventislab.com","mail.aventislab.com") $Date = (Get-Date).ToString('ddMMyyyy') $ReqFile = "Cert_Req-$CommonName-" + "$Date" + ".csr" $InfFile = @" [NewRequest] Subject = "CN=$CommonName" KeySpec = 1 KeyLength = …

Generate SSL Certificate with PowerShell Read More »

Disable JAVA Update with GPO

Please refer to the steps below on how to disable JAVA Update with GPO Default configuration of Java 8 Update We noticed that the Java Update Tab is only available in Java 8, but not Java 6 or 7 Check the Registry related to Java Update in Windows 10 $RegPath="HKLM:\SOFTWARE\WOW6432Node\JavaSoft\Java Update\Policy" Get-ItemProperty $RegPath EnableJavaUpdate : …

Disable JAVA Update with GPO Read More »

Setup SQL 2017 AlwaysOn Availability Group with PowerShell

Refer to the steps below on how to Setup SQL 2017 AlwaysOn Availability Group with PowerShell Components installed in this lab Hostname IP Address Remarks lab-sql1.lab.local 172.16.16.201 SQL 2017 Enterprise Server lab-sql2.lab.local 172.16.16.202 SQL 2017 Enterprise Server sqlclus.lab.local 172.16.16.210 Failover Cluster sqlag.lab.local 172.16.16.212 SQL Listener lab-ad01.lab.local 172.16.16.200 AD Domain Controller & File Share Witness A. …

Setup SQL 2017 AlwaysOn Availability Group with PowerShell Read More »

Scroll to Top