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 »

PS Core | Disconnect VI Session

Steps to Disconnect VI Session with PowerCLI on PowerShell Core Login to vCenter with valid Username & Password #PowerCLI – PowerShell Core on Windows 10 #First Time Only Set-PowerCLIConfiguration -InvalidCertificateAction Ignore -Confirm:$false Set-PowerCLIConfiguration -ParticipateInCeip $true #Import VMware Module Import-Module VMware.VimAutomation.Core #Connect to vCenter $VC = "10.3.3.15" $Username = "[email protected]" $PAssword = "P@ssw0rd01" Connect-VIServer -Server $VC …

PS Core | Disconnect VI Session Read More »

Perform Automate Telnet Commands with PowerShell

Steps on how to perform automate telnet commands with PowerShell WASP (Windows Automation Snapin for PowerShell) Install Chocolatey Package Manager by following my previous post Install the WASP Module #Install wasp choco install wasp -y #Copy the following modules to Windows PowerShell Module Path copy-item C:\ProgramData\chocolatey\lib\wasp -Recurse -Destination C:\Windows\system32\WindowsPowerShell\v1.0\Modules copy-item C:\ProgramData\chocolatey\lib\autoload -Recurse -Destination C:\Windows\system32\WindowsPowerShell\v1.0\Modules copy-item …

Perform Automate Telnet Commands with PowerShell Read More »

Install PowerShell 5.1 & Core on Windows 7

Refer to the steps below on how to install PowerShell 5.1 & Core on Windows 7 Verify the PowerShell version installed PS C:\Users\administrator> $PSVersionTable Name Value —- —– CLRVersion 2.0.50727.8800 BuildVersion 6.1.7601.17514 PSVersion 2.0 WSManStackVersion 2.0 PSCompatibleVersions {1.0, 2.0} SerializationVersion 1.1.0.1 PSRemotingProtocolVersion 2.1 Download and install Microsoft .NET Framework 4.5.2 Download and install PowerShell 5.1 …

Install PowerShell 5.1 & Core on Windows 7 Read More »

Renew SSL Certificate for Exchange 2007

Please refer to the following steps on how to Generate SSL Certficate for Exchange 2007 Exchange 2007 1. Open Exchange Management Shell New-ExchangeCertificate -DomainName mail.aventistech.info, autodiscover.aventistech.info -Friendlyname "SSL For AventisTech.info" -generaterequest:$true -keysize 2048 -path C:\CertRequest.req -privatekeyexportable:$true -subjectname "c=MY, o=AventisTech, cn=mail.aventistech.info"" Exchange 2016 (Updated) 1. Open Exchange Management Shell New-ExchangeCertificate -DomainName *.aventistech.info -Friendlyname "Internal SSL Cert" …

Renew SSL Certificate for Exchange 2007 Read More »

Hybrid migration from Exchange 2016 to Office 365

High Level Approach for Hybrid migration from Exchange 2016 to Office 365 User Principle Name (UPN) in AD Domain Update AD Users’ UPN Raise Forest & Domain Functional Level Associate New Domain Name Enable Directory Synchronization Azure AD Connect for Exchange Hybrid Migration

Scroll to Top