This is designed for Microsoft Windows ThinPC, which is basically a stripped down copy of Windows 7. Create an OU in Group Policy for your ViewThinPC computers. Create a new group policy and ...
See more...
This is designed for Microsoft Windows ThinPC, which is basically a stripped down copy of Windows 7. Create an OU in Group Policy for your ViewThinPC computers. Create a new group policy and attach it to the new OU. Below you'll see a screenshot of the group policy I use on my OU. Note that some of the settings are from the View Client group policy template (a copy of them is on your View Connection Server). - The important ones are: Use Enhanced Keyboard on Windows Client if available This can prevent the ThinPC from intercepting a normal CTRL-ALT-DEL and instead sends it to the VM. For this to work, you have to do the following steps: Make sure you are using the VMware View client with local mode. You don't need to use a local mode VM, you just need this install for this feature to work. Set the ThinPC's UAC to the lowest setting Right-click on "C:\Program Files\VMware\VMware View\Client\bin\wswc.exe" and go to Properties...Compatibility tab. Click on the "Change Settings for all users" button and set the program to always run as administrator. Add the user account (Domain Users or another group) as an administrator of the ThinPC. Note that in the time before the View session is established, the user can still send a CTRL-ALT-DEL to the ThinPC. From there, they can launch Task Manager and then Explorer.exe to get a taskbar. You may wish to set the group policy setting to "Remove Task Manager" in System\CTRL-ALT-DEL Options. If you do this, be sure to set a different group policy (with permissions) to allow your helpdesk to login and configure the ThinPC. User Group Policy loopback processing mode Only allow local user profiles Prevent Roaming Profile changes from propagating to the server This will cause the User Configuration in this group policy to override the user's roaming profile settings. Although not illustrated here, you can use group policy to further lock down the ThinPC. Delete user profiles older than a specified number of days on system restart Remove any unused local profiles after 30 days. Custom User Interface This will replace the taskbar (explorer.exe) with a vbscript that launches the View client. We use a script instead of launching the view client directly, because if we don't tell the shell what to do when the view client exits, the computer will just display a blank screen with no UI. For the shell setting, we used wscript c:\view\view.vbs. This is the vbscript that we use: set shell = CreateObject("WScript.Shell") 'Launch the View client and wait for it to close shell.run """c:\program files\vmware\vmware view\client\bin\wswc.exe""",,1 'Logout of the ThinPC shell.run "shutdown /l" set shell = Nothing Some people configure the script to loop and relaunch View, but I think this way provides a more consistent user experience: they've logged out of their VM, so they are pushed back to a regular login screen. Default value of the 'Log in as current user' checkbox This wil cause the View client to automatically login as the current user. You might also consider using EWF (Enhanced Write Filter) to lock down the ThinPC. Basically when you enable EWF, the ThinPC becomes read-only in the sense that when the computer is rebooted, any changes are discarded.