Posts mit dem Label Windows 7 werden angezeigt. Alle Posts anzeigen
Posts mit dem Label Windows 7 werden angezeigt. Alle Posts anzeigen

Freitag, 14. Januar 2011

Windows vom USB Stick installieren


Wenn man Windows ohne DVD installieren möchte, da man aus sein ISO-Image zum Beispiel aus dem MSDNAA Store geladen hat, kann es sein, dass das Windows 7 USB/DVD Download Tool seinen dienst verweigert. Entweder wird die ISO nicht erkannt "The selected file is not a valid ISO file." oder das Tool bricht bei 0% ab, da der USB Stick angeblich nicht verwendet werden kann.

Hier eine Methode, die immer geht:

Start -> Ausführen (mit Adminrechten) und folgende Befehle eingeben:

diskpart
list disk
select disk #
clean
create partition primary
select partition 1
active
format quick fs=fat32
assign
exit
#=Nummer des USB-Sticks

Anschließend einfach die ISO oder IMG Datei mit einem beliegen Programm mounten oder öffnen und alle Dateien auf den USB Stick kopieren.

Und schon gehts :)

Freitag, 25. September 2009

iTunes Sleep Timer mit Windows 7

Seit einiger Zeit hab ich nach einem Programm gesucht, das mein iTunes nach einiger Zeit beendet und den PC herunterfährt. Ich hab ein wenig gegoogelt und fand ein paar Sleep Timer, die meisten waren jedoch nicht direkt für iTunes, sondern fuhren einfach den PC herunter. Nur eines hatte für iTunes noch eine Lautstärkeregelung, die aber unter Windows 7 nicht funktionierte.

Wie also kann ich das ganze selber Einstellen, ohne eine Software zu installieren? Die Lösung ist ganz

Man legt sich eine Verknüpfung mit der entsprechenden Zeit auf dem Desktop an, die man zum Beenden einfach aufruft.

a) Verknüpfung anlegen: Rechtsklick->Neu->Verknüpfung

b) eingeben: shutdown /s /f /t 1200

c) speichern.


Das wird ein Herunterfahren (/s) auslösen, bei dem alle Programme, wie iTunes, zwangsweise (/f) geschlossen werden. Die Zeit bis zum Herunterfahren beträgt 1200 Sekunden (oder 20min). Das Parameter /t 1200 war unter Windows Vista auf 600 Sekunden beschränkt, unter Windows 7 sind jedoch bis zu 10 Jahre möglich und damit auch normale Zeiten wie 40min, die ich gestern gebraucht habe um bei entspannten Klängen aus meinem iTunes einzuschlafen.

Man kann auch andere Arten des Herunterfahrens, wie den Ruhezustand, verwenden, in dem man statt des Parameters /s folgende verwendet:

/l Log off. This cannot be used with /m or /d options. (Abmelden)
/s Shutdown the computer. (Herunterfahren)
/r Shutdown and restart the computer. (Herunterfahren und Neustarten)
/h Hibernate the local computer. (Ruhezustand)
Can be used with the /f option.

/t xxx Set the time-out period before shutdown to xxx seconds.
The valid range is 0-315360000 (10 years), with a default of 30.
If the timeout period is greater than 0, the /f parameter is
implied.

/c "comment" Comment on the reason for the restart or shutdown.
Maximum of 512 characters allowed.
/f Force running applications to close without forewarning users.
The /f parameter is implied when a value greater than 0 is
specified for the /t parameter.


Zum Abbrechen des Herunterfahrens, wenn man doch unerwartet an den PC zurückkehrt einfach "shutdown.exe /a" in der Eingabeleiste eingeben.

iTunes Sleep Timer with Windows 7

For some time i was looking for a way to let my iTunes play Music and shut down the PC after some time. I googled a lot and found some programs, but most of them just offered the basic Shutdown Timer. Just one had automatic volume lowering ... and it did not work.

So how could i pull off the timed shutdown myself more easily? The answer is very easy ...

Create a shortcut that triggers the windows routine shutdown.exe with the delay you wish.

a) create a shortcut: rightclick->new->shortcut

b) type in: shutdown /s /f /t 1200

c) save.

This will trigger a shutdown (/s) that forces all applications, like the running iTunes, to shut down (/f) within 1200 seconds (or 20min). The /t parameter is luckily not limited to any maximum as it was in Windows Vista. So i use /t 2400 and went to sleep with nice tunes in my ears last night :)

You can even tune the shutdown for your own purpose (like hibernation, instead of shutdown) with the following parameters instead of /s:

/l Log off. This cannot be used with /m or /d options.
/s Shutdown the computer.
/r Shutdown and restart the computer.
/g Shutdown and restart the computer. After the system is
rebooted, restart any registered applications.
/h Hibernate the local computer.
Can be used with the /f option.
/e Document the reason for an unexpected shutdown of a computer.

/t xxx Set the time-out period before shutdown to xxx seconds.
The valid range is 0-315360000 (10 years), with a default of 30.
If the timeout period is greater than 0, the /f parameter is
implied.

/c "comment" Comment on the reason for the restart or shutdown.
Maximum of 512 characters allowed.
/f Force running applications to close without forewarning users.
The /f parameter is implied when a value greater than 0 is
specified for the /t parameter.


Call "shutdown.exe /a" to abort the shutdown when you unexpectedly return to your PC.