Powershell: Set Mouse Pointer Scheme to NONE for XenDesktop VM's

Why to do this? Better user experience; reduced cpu load on zero client devices like xenith compared to aero mouse scheme. Powershell Script [code language=”powershell”] $RegConnect = [Microsoft.Win32.RegistryKey]::OpenRemoteBaseKey([Microsoft.Win32.RegistryHive]"CurrentUser", "$env:COMPUTERNAME") $RegCursors = $RegConnect.OpenSubKey("Control Panel\Cursors", $true) $RegCursors.SetValue("", "") $RegCursors.SetValue("AppStarting", "") $RegCursors.SetValue("Arrow", "") $RegCursors.SetValue("Crosshair", "") $RegCursors.SetValue("Hand", "") $RegCursors.SetValue("Help", "") $RegCursors.SetValue("IBeam", "") $RegCursors.SetValue("No", "") $RegCursors.SetValue("NWPen", "") $RegCursors.SetValue("Scheme Source", 0, …

Wyse Xenith Configuration (tested with firmware version 1.5)

xen.ini ;************************************************************* ;* SivaMulpuru * ;* 20110719 * ;* Config File for Wyse Xenith * ;************************************************************* EnableCacheINI=No ;************************************************************* ;* UserExp * ;************************************************************* #Path=ftp://XenithFtpServer/wnos/bitmap/test.bmp – Default is Center DESKTOP=test.bmp DesktopColorDepth=32 Device=audio volume=high mute=0 ;************************************************************* ;* Firmware * ;************************************************************* # AutoLoad=[0, 1, 2, 101, 102, 201, 202] – Disable=0 Refer Admin Manual # AutoUpdate Frimware with out …

WordPress Appliance - Powered by TurnKey Linux