'ManageEngine Desktop Central 'Script to install Group Policy Management Console and enable it in the Windows Feature for X86 machine '====================================================== on error resume next Set WshShell = WScript.CreateObject("WScript.Shell") 'Installation of Remote Server Administration Tool '==================================================== returnValue = WshShell.Run("C:\Windows\System32\wusa.exe Windows6.1-KB958830-x64-RefreshPkg.msu /quiet /passive /norestart", 0, TRUE) returnValue1 = WshShell.Run("dism /online /enable-feature /featurename:RemoteServerAdministrationTools", 0, TRUE) returnValue2 = WshShell.Run("dism /online /enable-feature /featurename:RemoteServerAdministrationTools-Features", 0, TRUE) returnValue3 = WshShell.Run("dism /online /enable-feature /featurename:RemoteServerAdministrationTools-Features-GP", 0, TRUE)