Force Android Firmware Update (without root)

This article is related to all Google Phones like Galaxy Nexus, Nexus 5, Nexus 7, etc. If Google releaes some firmware update you can „force“ your device to receive this update also if your device tells you that no update is available. This is working also for all of your devices which havn’t root access. As we know this workflow is working at any devices for any firmware updates. You only have to do the following simple steps to force your device to get the update:

  1. Go to „Settings -> Apps -> All -> Google-Service-Framework“
  2. Delete „Data and Cache“ and agree with „yes“
  3. Stop the service (it will start again)
  4. Go to „Settings -> About the Phone -> Systemupdate“
  5. The last date the Phone has check updates should be in year 1970. Please click „check now“.
  6. Now you sould receive the update-information of the Phone and you can download the Firmware Upgrade. If not please repeat all the steps again a few times (yes, this works)!

Enjoy your new Android Firmware Updates.

Update: This only works till Androis Version 4.4.4 alias KitKat.

Ordner-/Verzeichnissruktur unter Windows auslesen

Wer gerne unter Windows XP, Vista, 7, 8, 10, via Skript seine Ordnerstruktur auslesen möchte, kann dies wie folgt tun:

1. Ordnerstruktur inkl. Dateien auslesen:

dir [#SOURCE#] /a /b /s /o >[#TARGET#INCL#FILE#]

Beispiel: dir c:\ /a /b /s /o >c:\logfile.txt

2. Lediglich Ordnerstruktur auslesen:

dir [#SOURCE#] /a:D /b /s /o >[#TARGET#INCL#FILE#]

Beispiel: dir c:\ /a:D /b /s /o >c:\logfile.txt

WMware vSphere Hypervisor ESXi 4.x / 5.x verliert Einstellungen bei Reboot

Problem:

Der vSphere Hypervisor ESXi 4.x/ 5.x verliert nach dem Neustart des Hosts die kompletten Einstellungen bzw. die letzten Änderungen

Lösung:

Der ESXi speichert jede volle Stunde bzw. eine Minute danach die kompletten Einstellunge in der sogenannten bootbank-Partition. Diese ist 48MB groß und beinhaltet die Einstellungen. Dieser Job läuft als Chron.

  1. Chron anzeigen: „cat /var/spool/cron/crontabs/root“
  2. Optional: um den Inhalt des Backup-Scripts ansehen zu können: „cat /sbin/auto-backup.sh“
  3. Backup manuell ausführen: „/sbin/auto-backup.sh“
  4. Danach kann der ESXi problemlos neu gestartet werden und läd beim booten die aktuellen Settings 😉

USB-Installer unter Windows 7 / 8 /10 erstellen (bootbar)

Wer stand noch nicht vor dem Problem gerne das aktuelle Windows 7, Windows 8 oder Windows 10 via USB-Stick auf dem Rechner/Laptop/Netbook neu zu installieren. Anbei in ein paar Schritten, wie ein USB-Stick mit Windows Bordmitteln (diskpart) bootbar gemacht wird:

Voraussetzung:

  1. Betriebssystem zum vorbereiten: Windows Vista, Windows 7, Windows 8, Windows 10
  2. USB-Stick mit mind. 4 GB (Achtung: USB-Stick wird komplett gelöscht)
  3. Installationsmedium von Windows 7 oder Windows 8

Ablauf:

  1. Start -> Ausführen -> „cmd“
  2. es öffnet sich die Windows-Command-Line, hier starten wir Diskpart mit dem Befehl: „diskpart“
  3. in Diskpart folgenden Befehl ausführen um alle Datenträger aufgelistet zu bekommen: „list disk“
  4. wir wählen nun den USB-Stick aus: „select disk L” („L“ steht hierbei für die Ziffer des auszuwählenden Datenträgers -> den USB-Stick )
  5. ausgewählten Datenträger komplett löschen: „clean“
  6. Primär-Partition erstellen: „creat partition primary“
  7. angelegte Partition bootbar machen: „active“
  8. Partition formatieren: „format fs=fat32 quick“
  9. zuletzt können die Windows-Installationsdateien auf den USB-Stick kopiert werden