Daily Archives: May 14, 2019

remote enable RDP via network registry

The quickest way to resolve this issue is to change the registry key that enables Remote Desktop directly. I usually have remote registry access to the system because I am an administrator on the system. Open up Regedit Connect Network … Continue reading

Posted in windows | Comments Off on remote enable RDP via network registry

Hyper-V Core Commands Line

all windows list need install/remove get-windowsfeature install-windowsfeature -Name Hyper-V -Restart remove-windowsfeature -Name Hyper-V -Restart -=-=-=-=-=-=-=- storage configuration diskpart –> list volume -=-=-=-=-=-=-=-=- Disk Management for remote admin Netsh advfirewall firewall set rule group=”Remote Volume Management” new enable=yes note: please run … Continue reading

Posted in core | Comments Off on Hyper-V Core Commands Line

PowerShell reset windows

Reset-ComputerMachinePassword -Credential (Get-Credential) Test-ComputerSecureChannel -Repair -Credential (Get-Credential) – this one without reboot please run PowerShell with Admin right

Posted in PowerShell | Comments Off on PowerShell reset windows

time difference between domain controller – w32time

You should run below command line on problematic system , to reset the time service. – Type CMD in the run windows –  Type Net stop w32time to stop the time service –  Type W32tm /unregister to unregister the time … Continue reading

Posted in My Windows | Comments Off on time difference between domain controller – w32time

How to Run an MSI package on Windows Server 2008 Core Install

To run an MSI package on Windows Server 2008 Core install: § Connect through RDP on your server, with required rights § Type the following at the command prompt : msiexec /i “YourMSIPackagePath\YourMSIPackage.msi” It will launch the installation wizard.

Posted in core | Comments Off on How to Run an MSI package on Windows Server 2008 Core Install