Starta kommandotolken som administratör.
A. Ta bort partition:
diskpart
list disk
select disk 0 (eller aktuellt nummer)
list parttion
select partition 1 (eller aktuell partition)
delete partition override
B. Ändra från dynamisk enhet till normal:
Starta med en windowsskiva. Håll ner Skift + F10 för att komma till en kommandotolk.
diskpart
list disk
select disk x (nummer på den dynamiska disken)
detail disk
select volume=x ((nummer på volymen)
delete volume
select disk x (samma som förut)
convert basic
exit
Filter
2011-10-13
Diskhantering
Windows
2011-08-07
Koda om filnamn
Perl
När filer från Windows kopieras till ett filsystem för Linux kan det bli fel om filnamnen innehåller åäö. Här är ett perl-kommando som kodar om filnamnen.
convmv -r --notest --nfc -f latin1 -t UTF-8 *
2011-06-07
Skanna systemdisken
Windows
Öppna kommandotolken och kör som administratör:
sfc /scannow
2011-06-07
Kolla biosmeddelanden
Tips & tricks
Tryck Ctl-S. ryck Ctl-Q för att fortsätta.
2011-05-29
Renew ip-address i XP
Windows
1. Click the Start menu button on the Windows taskbar.
2. Click Run... on this menu.
3. If the computer is holding a current IP address, type 'cmd' (without the quotes) in the text box that appears.
A command prompt window appears on the screen.
4. Type 'ipconfig' (without the quotes) to view the status of the computer's IP address(es).
5. If the computer is holding a current IP address, type 'ipconfig /release' to let go of the address.
6. Type 'ipconfig /renew' to obtain a new IP address (whether or not the computer is holding a current address).
