PCFreak Logo (c) Der PCFreak

Archive for the 'Software' Category


Keine Videotelefonie mehr mit Skype Endgeräten 0

Seinerzeit habe ich über das Skype Telefon von ASUS (SV1T) berichtet und war prinzipiell sehr begeistert. Kürzlich musste ich leider feststellen, dass kein Video mehr angezeigt wird.

Nach einer kleinen Analyse stellte sich heraus, dass die Ursache eine Inkompatibilität der Video-Codecs ist. Alle Skype-Software-Produkte(Windows, Mac, iPhone etc.) haben einen neuen Videocodec verpasst bekommen. Dieser Codec ist nicht mehr kompatibel zum ASUS SV1T. Lediglich ältere Skype Versionen (z.B. die Version 6.1.60.129 für Windows) sind noch kompatibel.

Ich hatte Kontakt mit Skype (per Chat), die haben das Problem zu ASUS abgeschoben. Der ASUS Support zeigt mit dem Finger auf Microsoft (die haben Skype übernommen). Die Leidtragenden sind die Endkunden.

Soweit ich erfahren habe, sind auch Produkte von Logitech betroffen. Man muss also derzeit sehr vorsichtig sein, welche Skype-Hardware man sich kauft, um nicht mit diesem Problem konfrontiert zu werden.

Es wäre interessant ein wenig Feedback zu bekommen, welche Geräte ihr einsetzt und ob sie funktionieren. Ich könnte mir vorstellen, dass auch Fernseher mit integriertem Skype-Client so ihre Probleme haben werden.

Mit einem Firmware-Update scheint es nicht getan zu sein, da der ASUS-Support mir berichtete, dass die alte Software OpenSource war und Microsoft es nicht zulässt, weiterhin OpenSource in Verbindung mit Skype einzusetzen, deshalb ist vmtl. auch die Android-Version von Skype von diesem Videoproblem betroffen.

Windows Explorer – Change the OpenFolder Icon 0

Image

Since Windows Vista (Server 2008) Microsoft changed the OpenFolder Icon. When using Explorer or Regedit, it is visually hard to find which folder (or registry key) is currently opened. – But there is an easy solution. Just select your favourite icon for open folders, copy it to your system (e.g. %systemroot%) and then change the Default Icon for OpenFolders via registry by pointing to your new icon. You can do this with this command or manually via the registry

 

reg ADD “HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\explorer\Shell Icons” /t REG_SZ /v 4 /d ^%systemroot%^\openfolder.ico

 

After the change, make sure you restart Explorer.exe with the following command(s)

 

taskkill /f /im “explorer.exe” && explorer.exe

 

You should now have a wonderful new icon for OpenFolders and you will have no longer any trouble to detect the current open folder (or registry key).

A StartButton for Windows 8 0

Ok, we should get rid of the Startbutton and I don’t really need it but sometimes a user asks for “special support” and really needs it.

On this webpage I found an interesting idea howto create a Start Button, by using the “All Apps” overview in the Metro UI.

Just compile this imple AutoHotKey-Script, add a nice icon during the compilation process and place the resulting executable somewhere on your harddisk and pin it to the taskbar.

#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
Send {LWin}
Sleep 90
Send {Lctrl down}
Sleep 20
Send {Tab}
Sleep 20
Send {Lctrl up}

And this is the result!

 

2013-04-09 17h38 12

You can download my source, executable, icon and HowTo here: Download

Kostenloser Editor für Crystal Reports 0

Hier gibt es einen kostenlosen Editor für Crystal Reports. Er basiert auf Eclipse.

SAP Crystal Reports© software
http://www.businessobjects.com/campaigns/forms/downloads/crystal/eclipse/datasave.asp

Install Windows Server 2008 R2 to a different drive letter than C: 1

This blog entry will show how to to a native install of Windows Server 2008 R2 to a different driveletter with a minimum effort. You only need a thumbdrive, a text-editor and a Windows Server 2008 R2 DVD (it should also work with Windows 7).

On your thumbdrive (USB-Stick) create a file named “AutoUnattended.xml” with the following content:

<!–?xml version=”1.0″ encoding=”utf-8″?–>
<unattend xmlns=”urn:schemas-microsoft-com:unattend”>
<settings pass=”windowsPE”>
<component name=”Microsoft-Windows-Setup” processorarchitecture=”amd64″ publickeytoken=”31bf3856ad364e35″ language=”neutral” versionscope=”nonSxS” xmlns:wcm=”http://schemas.microsoft.com/WMIConfig/2002/State” xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance”>
<diskconfiguration>
<willshowui>OnError</willshowui>
<disk wcm:action=”add”>
<createpartitions>
<createpartition wcm:action=”add”>
<order>1</order>
<size>500</size>
<type>Primary</type>
</createpartition>
<createpartition wcm:action=”add”>
<extend>true</extend>
<order>2</order>
<type>Primary</type>
</createpartition>
</createpartitions>
<modifypartitions>
<modifypartition wcm:action=”add”>
<active>true</active>
<format>NTFS</format>
<label>System Reserved</label>
<order>1</order>
<partitionid>1</partitionid>
</modifypartition>
<modifypartition wcm:action=”add”>
<format>NTFS</format>
<label>SYSTEM</label>
<letter>M</letter>
<order>2</order>
<partitionid>2</partitionid>
</modifypartition>
</modifypartitions>
<diskid>0</diskid>
<willwipedisk>true</willwipedisk>
</disk>
</diskconfiguration>
<imageinstall>
<osimage>
<installto>
<diskid>0</diskid>
<partitionid>2</partitionid>
</installto>
<willshowui>OnError</willshowui>
</osimage>
</imageinstall>
<userdata>
<accepteula>true</accepteula>
</userdata>
</component>
</settings>
</unattend>

You can download the file here
Make sure, you change the line

  <letter>M</letter>

to your needs, where M is the drive letter you want to assign to the system partition. Save the file and attach the thumbdrive to the target computer.

Insert the Windows Server 2008 R2 DVD in the target computer and boot into setup.

At the first screen press Shift + F10 to open a command prompt

Determine which drive letter your thumbdrive has using diskpart.

Copy the file AutoUnattended.xml from your thumbdrive to RamDisk and start a second instance of setup.exe that will use our AutoUnattended.xml file.

.\setup.exe /unattend:X:\Sources\AutoUnattended.xml

A new instance of setup.exe will start using our custom installation file.

Continue with the setup as usual.

After setup is complete you can see the result. Windows is installed on drive M: . My thumbdrive uses the next available driveletter which is C: and the DVD is on the next free one which is D:.
Mission accomplished – Congratulations!

Why are we doing this? – Well, if you setup a Remote Desktop Services presenting Seamless RemoteApps it is very convenient for your users to have their local drived mapped with the same driveletters. If the operating system is on M: the local drives you bring into the Remote Desktop session start enumerating at C: . I know that there is a better way doing this with the “Windows Automated Installation Kit (AIK)” but I didn’t want to install that big software and mess arround with .wim images.

If you find this entry useful, feel free to write a comment.

Shoets – Screenshot utility for the logon screen 0


Have you ever wanted to create a screenshot of the Windows(R) Logon Screen? – Impossible?

No, with Shoets, a small utility I wrote using the AutoIt programming language you can easily create screenshots at the Windows(R) logon screen.

You can get the tool here (source included): shoets-screenshooter-for-logon-screen.zip

  1. Unzip the archive
  2. Run Shoets.exe
  3. Lock your computer
  4. On XP and 2003 press 5x “SHIFT” on your keyboard
    On other OSs click the “Ease of Access button”
  5. Press “s” as often as you like to create a screenshot
  6. Press “x” to exit the utility
  7. Login back to windows and enjoy your screenshots!

I will be interested in your feedback!

Howto compile oathtool on Windows with Cygwin 0


If you want to compile oathtool on Windows using Cygwin you can use this small Howto:

    1. Install Cygwin
    2. Install the following packages into Cygwin (maybe you need less packages, but this is myy actual list grabbed with cygcheck.exe -c) or just try, wait for errors and install the packages based on the error you get._autorebase, _update-info-dir, alternatives, autobuild, autoconf, autoconf2.1, autoconf2.5, automake, automake1.10, automake1.11, automake1.4, automake1.5, automake1.6,
      automake1.7, automake1.8, automake1.9, base-cygwin, base-files, bash, binutils, bzip2, ca-certificates, coreutils, cpio, crypt, cvs, cvsps, cygutils, cygwin, cygwin-doc, dash,
      diffutils, dos2unix, editrights, file, findutils, gawk, gcc-core, gcc-g++, gcc-mingw-core, gcc-mingw-g++, gdb, gettext, git, grep, groff, gzip, ipc-utils, less, libasn1_8, libattr1,
      libbz2_1, libcom_err2, libcurl4, libdb4.5, libexpat1, libffi4, libgcc1, libgcrypt11, libgdbm4, libgmp3, libgnutls26, libgpg-error0, libgssapi3, libheimbase1, libheimntlm0, libhx509_5,
      libiconv2, libidn11, libintl3, libintl8, libkrb5_26, libltdl7, liblzma5, liblzo2_2, libncurses10, libncurses9, libncursesw10, libopenldap2_3_0, libopenssl098, libopenssl100, libpcre0,
      libpopt0, libreadline7, libroken18, libsasl2, libsigsegv2, libsqlite3_0, libssh2_1, libssp0, libstdc++6, libtasn1_3, libtool, libwind0, login, m4, make, man, mercurial, mingw-runtime,
      mingw-w32api, mintty, perl, perl-Error, python, rebase, run, sed, tar, terminfo, texinfo, tzcode, w32api, wget, which, xorg-util-macros, xz, zlib0
    3. Download the source from here. I used oath-toolkit-1.12.4.tar.gz
    4. Unzip the source to your Cygwin home folder
      tar xzvf oath-toolkit-1.12.4.tar.gz
    5. Jump into the newly created folder
      cd  oath-toolkit-1.12.4
    6. Execute the following commands
      ./configure
      make
    7. Pickup the following files and copy them to a separate folder
      <cygwinbinfolder>\cygwin1.dll
      <cygwinhome>\oath-toolkit-1.12.4\liboath\.libs\cygoath-0.dll
      <cygwinhome>\oath-toolkit-1.12.4\\oathtool\.libs\oathtool.exe
    8. You can now run oathtool (without Cygwin) from the newly created folder

 

If you don’t want to compile yourself, you can download my compiled version here (if you trust me!).

Guacamole with RDP on Debian Wheezy 0

Guacamole is an HTML5 web appliation that provides access to desktop environments using remote desktop protocols such as RDP or VNC. No plugins are needed. This means, you can RDP from your iPhone or iPad from your browser. I did a full howto on my Wiki. Look here: http://bit.ly/guacamole-howto The result looks like this:

Audiograbber und Mp3Tag unter Linux 2

Audiograbber und Mp3tag sind meiner Meinung nach zwei Programme, die man im Umgang mit MP3-Dateien unbedingt benötigt. Mit Audiograbber kann man aus Musik-CDs oder Musikdateien MP3-Dateien erstellen. Mp3tag ist ein sehr komfortables Programm, um die Tags der MP3-Dateien zu ändern, MP3-Dateien umzubenennen uvm.

Da ich mittlerweile privat fast ausschließlich mit Linux arbeite, mir die obigen Programme jedoch sehr ans Herz gewachsen sind, hier eine kurze Anleitung wie man diese Programme mit WINE unter Linux (in meinem Fall Kubuntu 11.10) problemlos zum Laufen bekommt.

Zunächst benötigen wir die Setup-Dateien für Audiograbber, Mp3tag und das Lame-Plugin für Mp3tag, diese gibt es über die Homepages der beiden Tools:

  Audiograbber http://www.audiograbber.de
  Mp3tag http://www.mp3tag.de/

Im Detail sind das dann folgende Dateien:

Audiograbber
agsetup183se.exe

Lame Plugin für Audiograbber
lameplugin_setupX86.exe oder lameplugin_setupX64.exe

Mp3tag
mp3tagv250setup.exe

Um die obigen Windows Programme unter Linux zu installieren muss zunächst WINE installiert werden. Mit WINE können viele Windows Programme unter Linux installiert und ausgeführt werden.

Der Befehl

  sudo apt-get install wine

in einem Terminal installiert WINE

WINE arbeitet mit sogenannten “Flaschen”, man kann sich diese “Flaschen” als jeweils separate Windows-Instanzen vorstellen. Dadurch ist es z.B. möglich, 2 Windows-Programme, die sich nicht “vertragen” in jeweils separate “Flaschen” zu installieren oder mehrere Windows-Programme die sich untereinander nicht beeinflussen in eine “Flasche” zu packen. Ich trenne meine “Flaschen” gerne nach Aufgabengebiet. Da sich Audiograbber und Mp3tag problemlos vertragen, möchte ich sie beide in eine “Flasche” installieren. Diese “Flasche” soll im Ordner /home/pcfreak/winprogs/mp3 liegen, also lege ich diesen Ordner mit folgendem Befehl in einem Terminal an:

  mkdir -p /home/pcfreak/winprogs/mp3

Um WINE mitzuteilen, dass es den soeben angelegten Ordner als Ordner für eine “Flasche” benutzen soll, muss man die Variable WINEPREFIX vor der Installation von Programmen definieren. Folgender Befehl übernimmt dies für den soeben angelegten Ordner:

  export WINEPREFIX=/home/pcfreak/winprogs/mp3

Nun können wir mit der Installation beginnen. Wir beginnen mit Mp3tag. Die Befehle werden wieder in einem Terminal eingegeben und wenn das grafische Setup von Mp3tag startet, bedienen wir es wie wenn wir das Programm unter Windows installieren würden.

Mit der auf dem Desktop erstellten Verknüpfung kann man nun Mp3tag starten. Wer das Ganze noch mit einem schönen Icon versehen möchte, der muss eben selbst Hand anlegen und für die Desktop-Verknüpfung schnell mit The Gimp ein Symbol erstellen.

Da wir nun wissen, wie man ein Windows-Programm mittels WINE installiert, führen wir nun die Installation von Audiograbber und dem Lame-Mp3-Plugin auf die gleiche Weise durch:

Nun noch das Lame-Plugin für Audiograbber:

Auch für Audiograbber habe ich mir selbst ein Symbol erstellt und es für die Desktop-Verknüpfung verwendet:

Beide Programme lassen sich nun problemlos vom Kubuntu Desktop starten und verwenden!

Beide Programme funktionieren wirklich einwandfrei. Mit Audiograbber kann problemlos aus WINE heraus das CD-Rom zum “grabben” von Audio angesprochen werden. Innerhalb der Windows-Programme stehen die wichtigsten Ordner als Links zu den Ordnern in Kubuntu (Musik, Bilder usw.) bereit, sodass man sich schnell zurechtfindet.

Top Screenshot und Screenrecording Software 1

Ich möchte kurz auf ein super Programm hinweisen, welches mir von meinem Arbeitskollegen empfohlen wurde. Ich bin total begeisert. Das besagte Programm heißt Screenpresso und ist für Windows.
Man kann damit nicht nur Screenshots machen, sondern auch Videos (Freeversion nur 20 Sekunden). Nahezu alle Funktionen sind uneingeschränkt privat und kommerziell nutzbar. Hier sind die Features aufgelistet und die Free- und Proversion gegenübergestellt.

Hier das Feature Video auf Youtube.


Endlich mal eine Software die sehr viele Funktionen aufgeräumt und mit einem tollen UI unter einen Hut bekommt.

Ich habe mir Screenpresso Pro bestellt, da ich die Videofunktion sehr gut gebrauchen kann!

Nächste Seite »

Switch to our mobile site