image_pdfimage_print

Windows 2012R2/Win 8.1 Startmenü Rechtsklick mit Citrix Profile Management

Hi together

Anyone who’s delivered Windows 2012R2 or Windows 8.1 with XenApp/XenDesktop 7.x, was wondered that the right-click on the start button doesn’t work:

RCStartmenu1

That happend because Citrix User Profile Management overwrights or delete the folder AppData\Local\Microsoft\Windows\WinX .

You can restore the content of this folder with a simple Logon script:

$WinxDst = "$env:userprofile\AppData\Local\Microsoft\Windows\WinX"
$WinxSrc = "$env:SystemDrive\Users\Default\AppData\Local\Microsoft\Windows\WinX\"

If(!(Test-Path -Path $WinxDst)){
    Copy-Item -Path $WinxSrc -Destination $WinxDst -recurse }Else{
    Write-Host "WinX Work"
}

The result looks like common:

RCStartmenu2

To save this permanently you should include following path in Citrix UPM: !ctx_localsettings!\Microsoft\Windows\WinX

 

More information:
http://social.technet.microsoft.com/Forums/windows/en-US/161692bf-fa57-4ac1-b9b8-4e550ad9c987/windows-key-x-does-not-work-in-windows-8

http://answers.microsoft.com/en-us/windows/forum/windows8_1-desktop/right-click-81-start-button-does-nothing/50f95136-32bd-4581-9241-f2321bc440dd

 

 

A special thank goes to the system engineers from the company Unico Data AG, which have explored this in the broad Internet :-)

Citrix User Profile Management 5.x

Win8/Win2012 Metro Design – Anordnung der Kacheln wird nicht ins Profil geschrieben

Hallo zusammen

Wer sich schon mal mit Benutzerprofilen und dem seit Windows 8/Windows Server 2012 vorhandenen Metro Design beschäftigt hat, hat sich sicherlich auch schon darüber geärgert, dass nach dem Abmelden die Anordnungen der Kacheln verloren waren.

Der Grund ist so einfach und ärgerlich zugleich:

Die Anordnung der Kacheln wird per Design in AppData\Local statt AppData\Roaming gespeichert.

Mit reinen Microsoft Bordmitteln fehlt mir gerade der notwendige Geistesblitz um das Problem zu lösen. Machbar ist dies jedoch mit dem Profile Management von Citrix.

In der gesamten Konfiguration muss ich eine einzelne Datei in den Profilpfad mit aufnehmen, und zwar…. tadaaa:
!ctx_localsettings!\Microsoft\Windows\appsFolder.itemdata-ms

Anschliessend sollten sich die Benutzer darüber “freuen”, dass sie ihre mühevoll angeordneten und sortierten Kacheln so vorfinden, wie sie diese am Abend zuvor verlassen haben ;-)