1) In the new HP thin client (e.g T610), to allow the normal user to see the USB storage, you have to do: Local Computer Policy -> User Configuration -> Administrative Templates -> Windows Components -> Windows Explorer –> Disable 'Hide these specified drives in My Computer' 2) Windows Embedded 7 32bits does not support … Continue reading HP Thin Client Working Notes
Category: Microsoft
WMIC Examples
I did not get many chances to use WMIC (Windows Management Instrumentation Command-line) before, but recently I have used it twice and found it is really handy! Example 1: Get local user SID wmic useraccount get name,sid Example 2: Set a local user’s password never expire wmic useraccount where "Name='user01'" set Passwordexpires=false
SQL express dynamic port causes vCenter service fail to start
A friend called and asked me why his vCenter service failed to start after the server reboot. After spending some time in investigation, I finally found the root cause – he uses SQL express to host the DB. And the SQL server port changed to another after the server reboot, which led to the SSO … Continue reading SQL express dynamic port causes vCenter service fail to start
MS Technical White Paper: Managing Windows 7 and Windows 8 Side-by-Side
This white paper discusses the planning, line-of-business application compatibility, imaging, security, and backend system considerations and experiences of the Microsoft IT team when managing desktop and laptop machines running Windows 8 and Windows 7 within the same corporate network. Many of the techniques and best practices described in this paper can be employed by other … Continue reading MS Technical White Paper: Managing Windows 7 and Windows 8 Side-by-Side
Puppet for Windows: Remote Execution
In this example, I am going to use Puppet to: - Create a Windows user and add it to the RDP group. - Add Web Server role. - Install McAfee VSE8.8. Before Following things need to done: 1) Install the Puppet agent in Windows, detailed instruction can be found here. 2) Create a batch script … Continue reading Puppet for Windows: Remote Execution