Archive for the ‘Windows XP’ Category

Triple boot: XP, Vista, Linux

Thursday, May 3rd, 2007

Before Windows Vista installation, my pc boot loader showed Linux Grub boot manager at startup; I had 2 operating systems installed: Windows XP and Ubuntu Linux.

To make free space on my hard drive for Windows Vista I used a Linux tool: GParted. Simple and powerful! ;)

Then I installed Windows Vista on free partition: Vista’s boot manager overwrited Grub and let me chose my operating systems: unfortunately only XP and Vista worked (cause of overwriting), so I had to reinstall Grub not on MBR but on Linux partition (my target was to use Vista boot manager and not to use Linux Grub).
So I booted with Ubuntu Linux Live CD, I opened a terminal and I wrote:

$ sudo grub
grub> find /boot/grub/stage1

and result was (you can have other values):

(hd1,1)

Then I wrote:

grub> root (hd1,1)
grub> setup (hd1,1)

(notice that if you write “setup (hd1)”, Grub will be installed at beginning of that disk and overwrite Vista bootloader!).
Last command was:

grub> quit

Then I rebooted pc chosing Windows Vista at startup (Ubuntu option will not appear yet).

Notice that on Windows XP you can setup easily your boot manager from boot.ini file. On Windows Vista there is a not-too-frienly utility called BCDEDIT. Fortunately there is another useful utility: EasyBCD, that offer you a simple graphic interface.
So I launched EasyBCD program -> Add/remove Entries -> Linux/BSD.
On Type field I wrote “Grub” (without “”), Name “Ubuntu Linux”
Then Hard Drive “1″ and Partition “2″.
Pay attention because if you installed grub on hd0,0, you have to write: Hard Drive “0″ and Partition “1″ instead of my values.
Then click on “Add Entry” and “save”.

Well done! I rebooted pc and I could see my triple working boot ;)

You can find some useful guides about dual boot at: http://www.p2pforum.it/forum/forumdisplay.php?f=173

  • Share/Bookmark

Windows shortcuts

Friday, April 13th, 2007

Here there are some windows shortcut you can use to make your windows “surfing” easy. I have tried those shortcut on:

Windows 2000 Professional, Windows XP Professional, Windows XP Professional 64 bit Edition, Windows 2003 Server Std Ed, Windows Vista Business Edition.

Shortcuts:

  • Windows Logo + F1: it opens “Help and Support Center” window (It works on each O.S. I have tried)
  • Windows Logo + F: it opens “Search Results” window (It works on each O.S. I have tried)
  • Windows Logo + L: it locks computer (It works on each O.S. I have tried, except Windows 2000 Pro)
  • Windows Logo + E: it opens “My computer” window (It works on each O.S. I have tried)
  • Windows Logo + M: it minimizes all opened windows (It works on each O.S. I have tried)
  • Share/Bookmark

How to shutdown/reboot remote Windows PC in a domain

Friday, March 30th, 2007

First of all you have to be logged-in as Domain Administrator in whatever domain PC, then:

  • Create “shutdownPC.bat” file
  • Right click on it -> Modify
  • Write:
    shutdown -s -m \\PC_Name -t shutdown_Timeout_in_seconds
  • Save and close it.
  • Execute it.

Now, if you want to reboot a domain pc, you simply:

  • Create “rebootPC.bat” file
  • Right click on it -> Modify
  • Write:
    shutdown -r -m \\PC_Name -t shutdown_Timeout_in_seconds
  • Save and close it.
  • Execute it.

If you need to shutdown/reboot more than one machine, you can insert in the same file other lines changing “PC_Name”.

If you want to see other shutdown command parameters, you can open Dos Prompt , digit “shutdown” (without “”) and press Enter.

  • Share/Bookmark

CTRL+ALT+CANC for user login

Friday, March 9th, 2007

Not long ago I was asking myself how I could set CTRL+ALT+CANC login sequence for users on Windows Vista.

On Windows 2000 Pro there was the useful “control panel -> users and passwords”, but on Windows XP and also on Windows Vista you have to:

  • do “Start (or Windows Logo) -> Run… -> NetplWiz.exe” (only on Windows Vista)
  • do “Start (or Windows Logo) -> Run… -> control userpasswords2″
  • do “Start (or Windows Logo) -> Control Panel -> Administrative Tools -> Local security Policy”.
    Then on opened windows, Security Settings -> Local Policies -> Security Options” and search for “Disable CTRL+ALT+CANC requirement for logon”. Set “Disable”.

CTRL+ALT+CANC per il login dell’utente

Non molto tempo fa mi chiedevo come si poteva fare a richiedere la pressione dei tasti CTRL+ALT+CANC prima del login di un utente su Windows Vista.

Su Windows 2000 Pro c’era il comodo “pannello di controllo -> utenti e password”, ma su Windows XP e su Windows Vista bisogna:

  • andare su “Start (o logo di Windows) -> Esegui… -> NetplWiz.exe” (solo su Windows Vista) oppure
  • andare su “Start (o logo di Windows) -> Esegui… -> control userpasswords2″, andare nella scheda “Avanzate” e mettere il segno di spunta su “Richiedi agli utenti di premere CTRL+ALT+CANC” oppure
  • andare su “Start (o logo di Windows) -> Pannello di Controllo -> Strumenti di amministrazione -> Criteri di protezione locale” e nella finestra che si apre, andare su “Impostazioni protezione -> Criteri locali -> Opzioni di protezione” e cerchi la voce “Accesso interattivo: non richiedere CTRL+ALT+CANC”. Impostare su “Disattivato”.
  • Share/Bookmark

Troubles with windows update “MSXML 4.0 SP2″?

Wednesday, February 21st, 2007

Operating System: Windows XP SP2

Problem description: Today I was updating Windows XP SP2 on a Laptop PC; I was doing custom updates install from microsoft.com site but I noticed that every time I did it, MSXML 4.0 SP2 (KB 927978) update (http://support.microsoft.com/kb/927978) was always “ready to be installed” even if I installed it each time.

How to solve: uninstall MSXML 4.0 SP2 from Start -> Control Panel -> Add/Remove programs; uninstall also Windows Installer; Download KB927978 update (the .exe file) from Microsoft support site and install it. Control from Windows Update Site if you still have the problem.

Problemi con “MSXML 4.0 SP2″ windows update?

Sistema operativo: Windows XP SP2

Descrizione del problema: Oggi stavo effettuando un aggiornamento di Windows XP SP2 su un portatile direttamente dal sito microsoft.com, ma ho notato che, ogni volta che rieffettuavo l’aggiornamento, “MSXML 4.0 SP2 (KB 927978) update” (http://support.microsoft.com/kb/927978) era sempre “pronto per l’installazione”.

Come risolvere: disinstallare MSXML 4.0 SP2 da Start -> Pannello di Controllo -> Installazione applicazioni; disinstallare anche Windows Installer; scaricare l’update KB927978 (il file .exe) da sito di supporto Microsoft e installalo. Controllare dal sito Windows Update se hai ancora il problema.

  • Share/Bookmark