Si hemos conseguido una copia beta de Windows Vista, el próximo sistema operativo de Microsoft, los pasos para la eliminación de la activación (lo dejaremos como no registrado) nos permitirá seguir usándolo sin ninguna limitación.
- Pulsaremos en Inicio/Ejecutar y tecleamos msconfig,
- Señalamos la pestaña de Servicios,
- Desmarcamos Software Licensing Service y SL UI Notification Service,
- Aplicamos y reiniciamos.
Esto dejará nuestro sistema operativo no registrado (que nos será recordado) pero que podremos seguir ejecutando en nuestro equipo.






Thanks for this how-to :)One question: I’ve been mincukg around with this on WP 2.8.4 and I found that the generate_rewrite_rules part in myPlugin_add_feed is not needed at all for this. If I comment out the add_action like below but leave the rewrite flush in place (a must!!):
function myPlugin_add_feed( ) { global $wp_rewrite; add_feed( myFeed', myPlugin_create_feed'); //add_action( generate_rewrite_rules', myPlugin_rewrite_rules'); $wp_rewrite->flush_rules();}my new feed is still available via (any URI ending with) myFeed and not just with the query string feed=myFeed I am confused! Any idea what is going on (wrong) here?