Whoo!! VMware reads our blog.
Or maybe not
, it could be they already planned to release a new beta version of ThinApp in november. VMware announced this news at VMworld 2009. The final release is planned for Q1 2010 a little late if you ask me.. since there are already some working versions out there: for instance check Rubens video.
Next to that i also found a nice howto that shows how to decompile Thinapp and Xenocode packages created by NickOn and a nice little script that executes Thinreg in a decent way with support for recursive folders (here).
Windows 7 Virtual PC Keyboard shortcuts
Another nice find by Martin Zugec (thx mate!)
http://martinzugec.blogspot.com/2009/05/keyboard-shortcuts-for-windows-virtual.html
Windows 7 Problem Steps Recorder Script
Yesterday I wrote about the Problem Steps Recorder and how it can help us lazy IT admins who have to screenshot some setups/manual actions for recipe files or documentation in general. When I was messing around with the PSR I found out one really annoying fact: the PSR window is always on top in all the problem report screenshots.. That's not really nice for our documentation now is it? So I wrote this quick Auto-IT script that Starts PSR>start recording>wait until ESC key is pressed>stop recording>ask where to save file
Download the script from here
Here is the code (simple ofcourse
)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Problem steps recorder script
;; V1.0 HHO Login Consultants
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
#include <Misc.au3>
Run("psr.exe")
WinActivate("Problem Steps Recorder")
WinWaitActive("Problem Steps Recorder")
Send("{ALTDOWN}a{ALTUP}")
WinSetState("Problem Steps Recorder", "", @SW_HIDE)
while 1
if _IsPressed("1B") then ExitLoop
WEnd
WinSetState("Problem Steps Recorder", "", @SW_SHOW)
WinActivate("Problem Steps Recorder")
WinWaitActive("Problem Steps Recorder")
Send("{ALTDOWN}o{ALTUP}")
Windows 7 Problem Steps Recorder
When you have to help out users with their problem, nothing is more frustrating then the users' inability to clearly state what their problem is, and how they got to the point where it went wrong. Fortunatly, Windows 7 packs a really really really awesome tool that will get rid of those problem once and for all: the Problem Steps Recorder.
![]()
This nifty little tool records the users' screen and outputs all relevant information in a MHTML document, which will contain all screenshots and steps needed by the helpdesk user. Thanks to Ment van der Plas for pointing this tool out to me
You can start Problem Steps Recorder by Start>Run>psr.exe and try it out
This tool is also very very very interesting for all us lazy IT guys, who don't want to screenshot their installations for recipe files etc
Windows 7: How Virtual XP Mode works
Martin Zugec (a co-worker of ours) has wrote a terrific blogpost on how the Virtual XP mode works in the new Windows 7 RC. Read it here
Thanks Martin
Windows 7
Wohoo finally available as RC, and of course within one minute i have the nasty habit of changing things like for instance the explorer button in the taskbar that brings you to the library folder (yeah who cares??). So to change this button to something usefull here is a quick fix:
Right click the button
Right click "windows explorer" and open properties
Change target to: %windir%\explorer.exe ::{20D04FE0-3AEA-1069-A2D8-08002B30309D}
Click OK!
Xenserver and windows 7 part two
Just two weeks ago i told you how to get the windows 7 beta running on XenServer. At this moment Citrix describes this method as "The hard way" (i prefer to call it "The cool way"
). As expected the problem is caused by running Windows 7 enlightened, this should make virtual machines faster because they know they are virtual. As we discovered this does not work yet.
Now the easy way to run Windows 7 on XenServer: Just download this template and install it. Remember when using this template you're machine is not hypervisor aware anymore so might perform less. Because it's called the easy way lets quote how to install it to.
After downloading and unzipping the template follow the steps below.
Getting it onto your XenServer system:
1. In XenCenter right-click on your server and select Import VM
2. Browse to the file and select Exported Template as the Import TypeBuilding a Windows 7 Beta VM:
1. Once the template is installed just click New VM button and the Windows 7 Template will show up at the top of the first screen
2. The rest is business as usual just be sure to add a disk drive and a NIC as you are creating the VM
