Error parsing the server "ServerName" "Clients.xml" file.

Windows 7 und der vSphere Infrastructure Client

Ich arbeite seit kurzem mit Windows 7 und habe sehr rasch festgestellt, dass der vSphere Client überhaubt nicht funktioniert. Das Problem ist bei VMware bekannt und sollte mit dem Endkunden Release von Windows 7 behoben sein. Ich verwende das RC; evtl. ist dieses Problem schon bei dem RTM (Release to Manufacturers) gelöst.
fehler1fehler2
Es gibt allerdings einen Workaround für dieses Problem:
1. Obtain a copy of %SystemRoot%\Microsoft.NET\Framework\v2.0.50727\System.dll from a non Windows 7 machine that has .NET 3.5 SP1 installed.
2. Create a folder in the Windows 7 machine where the vSphere client is installed and copy the file from step 1 into this folder. For example, create the folder under the vSphere client launcher installation directory (+%ProgramFiles%\VMware\Infrastructure\Virtual Infrastructure Client\Launcher\Lib+).
3. In the vSphere client launcher directory, open the VpxClient.exe.config file in a text editor and add a element and a element as shown below. Save the file.
<?xml version=»1.0″ encoding=»utf-8″?>
<configuration>

<runtime>
<developmentMode developerInstallation=»true»/>
</runtime>
</configuration>
3. Create a batch file (e.g. *VpxClient.cmd*) in a suitable location. In this file add a command to set the DEVPATH environment variable to the folder where you copied the System.dll assembly in step 2 and a second command to launch the vSphere client. Save the file. For example,
SET DEVPATH=%ProgramFiles%\VMware\Infrastructure\Virtual Infrastructure Client\Launcher\Lib
«%ProgramFiles%\VMware\Infrastructure\Virtual Infrastructure Client\Launcher\VpxClient.exe»
4. (Optional) Replace the shortcut on the start menu to point to the batch file created in the previous step. Change the shortcut properties to run minimized so that the command window is not shown.
You can now use the VpxClient.cmd (or the shortcut) to launch the vSphere client in Windows 7.
Note that this workaround bypasses the normal .NET Framework loading mechanism so that assembly versions in the DEVPATH folder are no longer checked. Handle with care
Trackback: VMware Thread

mkv Dateien in avi (xvid) konvertieren unter Linux für PS3

Jeder der sich gerne mal HD Filme via Playstation 3 anschauen will kennt das Problem. Das gebräuchlichste Format für Filme mit einer Auflösung von 720p oder 1080p ist Matroska (.mkv)
Die Playstation 3 hat keinen Codec um Matroska Files zu decodieren. Desshalb müssen diese Files konvertiert werden.
Da ich hauptsächlich mit Linux arbeite konvertiere ich die Filme mit Slackware. Von dem dafür eingesetzten Programm ffmpeg gibt es auch ein GUI.
win_logolinux_logo WinFF

ffmpeg -i INPUT_FILE -f mp4 -r 23.976 -vcodec libx264 -s 1280x720 -b 3000kb -aspect 16:9 -flags +loop -cmp +chroma -deblockalpha 0 -deblockbeta 0  -maxrate 3500k -bufsize 4M -bt 256k -refs 1 -bf 3 -coder 1 -me_method umh -me_range 16 -subq 7 -partitions +parti4x4+parti8x8+partp8x8+partb8x8 -g 250 -keyint_min 25 -level 30 -qmin 10 -qmax 51 -qcomp 0.6 -trellis 2 -sc_threshold 40 -i_qfactor 0.71 -acodec libfaac -ab 384kb -ar 48000 -ac 2 OUTPUT.MP4

RDP bricht ohne Timeout sofort ab

Ich hatte kürzlich das Problem, dass ich mich nicht mehr via RDP auf meinen PC zuhause verbinden konnte. Nach stundenlangem herumgebastle hatte ich dann endlich die Lösung gefunden.

Das Problem:

Die Ursache war der neuste Treiber von NVIDIA (6.14.11.7519) und XP SP3, welche scheinbar nicht kompatibel sind.
Im Event Viewer erscheint der Event 26 Application Popup: Application popup: : \SystemRoot\System32\RDPDD.dll failed to load

Die Lösung:

Manuell

In der Registry muss ein zusätzliche Eintrag gemacht werden, der die Session Image Size erhöht
HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management
Neuen DWORD Wert: SessionImageSize mit Wert dword:00000020 (Hex für 32)

oder Reg Datei importieren

SessionImageSize.reg (Rechtsklick -> Speichern unter)

VPN Server mit Linksys WRT54GL

Die Idee eine günstige VPN Lösung für Zuhause einzurichten kam mir als ich vom Büro aus diverse Sachen auf meinem PC Zuhause machen wollte und daher mehrere Port Forwards auf dem Router einrichten musste. Dies ist sicherheitstechnisch nicht gerade das intelligenteste; da könnte ich meinen PC auch gleich direkt am Cable Modem anschliessen und ein Schild anhängen: Hey ich bin so sicher wie ein Schweizer Käse. «VPN Server mit Linksys WRT54GL» weiterlesen

Ricardo.ch Phishing Mail

Recently I received an email from ricardo.ch where I am registered.
Ricardo.ch is an e-auction platform.
This E-Mail was a phishing mail that is very poor translated from english to german 🙂 so I didn’t have to think a lot about it.
It wants you to install a SSL 3 Certificate (root_ca_ssl3.exe) for further using ricardo.
1st mistake: SSL Certificates aren’t provided as exe.
2nd mistake: Certificates are installed on the Webserver and not on clients
3rd mistake: There are many translation mistakes…
etc. etc.
IMHO it’s a very poor phishing mail because everyone that understands some basics of IT knows that this mail can’t be serious. Nice try 😉
Here it is:

Geehrt Benutzer,
Votre E-Mail in der Ricardo.ch system ist: p***.r**@***.ch
In Verbindung mit sich häufigsten Fällen von unbefugtem Zugriff zu Benutzkonten, bitten wir Sie das Zugriffsicherheitzertifikat für Ricardo.ch website einzustellen, das wird Sie auf das höhere Schutzniveau von SSL2-Protokoll zu SSL3-Protokoll übergehen lassen. Zugriff ohne Zertifikat wird von Dezember 20, 2007 an verboten. Das Personalzertifikat ist hier beigefügt. Für die Zertifikateinstellung, downladen Sie das beigefügte File. Das File ist: root_ca_ssl3.exe
(Achtung! Die Erneurungen funktionieren nicht mit dem Operationssystem MICROSOFT VISTA, die Erneurungen dafür werden später erscheinen, folgen Sie die Nachrichten).
Vielen Dank für Ihre Aufmerksamkeit!
Die RICARDO.CH Verwaltung

VBSript: Get Folder where started Script lies

This sample code stores the directory path where the script was started in a variable.
It’s usefull because you can move the script wherever you want (even UNC locations) and the paths remains correct.

Option Explicit
Dim strSourcePath
strSourcePath = Left(WScript.ScriptFullName,Len(WScript.ScriptFullName) _
 - Len(WScript.ScriptName))

The returned String contains already a trailing slash (\) so you just have to add the rest of the path or the exe
e.g
strSourcePath & "foo.exe" and not strSourcePath & "\foo.exe"

Test "Application Installation" without Full OS Deploying on Windows Deployment System

As i set up a Windows Deployment Server in our Company and wanted to test the unattended Installation of Applications i had a big annoying Problem: Everytime i wanted to test a new unattended Setup i had to install the whole Operating System and wait for Apps installation to see if they work. Or if i simply changed one parameter in an Application and wanted to test this i had to wait about half an hour for OS Installation.
Without searching alot i found a valuable Resolution for this very time-consuming Problem:

  1. In Deployment Workbench (BDD2007) create a new Build (i.e. ApplicationsOnly)
  2. Right Click on the new Build select Properties and change to Task Sequence
  3. Now delete every Group and Step exept State Restore, Gather local only and Install Applications
  4. Click on State Restore and go to Options. Remove the Condition Line marked in Screenshot.

     

  5. On Client Computer type in cmd: cscript \\<WDS-Server>\<DistributionFolder>\scripts\LiteTouch.vbs
  6. As migration type choose Refresh this computer
  7. Then you have to enter some information (ComputerName, Domain etc.) You can leave domain blank and Join a workgroup, because we just install applications
  8. On next Screen Do not back up the existing computer
  9. Then choose the Build you created before (i.e ApplicationsOnly)
  10. On next Page you can select Applications you want to test.
  11. Then you have to enter some credentials to connect the Share on which the Applications lie
  12. Click Begin and watch the Errors of the Applications 😉

Total Cost of this Procedure depending on Applications (10 Min) VS. Deployment of whole OS and Apps (30-45 Min)
Note:
I’ve seen the phenomen, that some applications work on the ApplicationsOnly build and not on the Full XP SP2 build and vice-versa.
e.g MS Office 2003: In ApplicationsOnly build you have to call it via pro11.msi TRANSFORMS=*.mst and in XP SP2 build setup.exe TRANSFORMS=*.mst