Questa mattina durante l'installazione di Windows 7 su un Notebook mi sono reso conto di non aver creato la partizione dati che generalmente creo per i dati utente.
Purtroppo era troppo tardi perchè l'installazione era iniziata e proprio per questo ho deciso di interromperla per eliminare tutte le partizioni e rifarle, mio malgrado ho scoperto che la partizione dove windows aveva iniziato l'installazione non era eliminabile.
Utilizzando la combinazione shift+F10 ho aperto una console e utilizzando il comando diskpart ho dapprima ridotto il volume che era stato creato e all'interno ho creato una nuova partizione.
giovedì 28 febbraio 2013
domenica 17 febbraio 2013
Disattivazione Java update su Win7 64 bit
A differenza dei sistemi operativi a 32 bit nei quali le operazioni in esecuzione automatica si trovano nella chiave HKLM\software\microsft\windows\currentversion\run nella versione a 64 bit le applicazioni a 32 bit vengono eseguite attraverso l'utilizzo di wowexec pertanto la chiave dove andare ad eliminare la schedulazione dell'update java è :
HKLM\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Run
Se questo post ti è stato utile per favore lascia un commento.
lunedì 28 gennaio 2013
Creazione di un sommario in Office 2003
Qui di seguito pubblico un filmato per la creazione dei sommari in Office 2003:
Link al filmato
venerdì 25 gennaio 2013
mercoledì 23 gennaio 2013
VM Migration via powercli
# Script for Vm Datastore Migration
# Author.: Michele Pavan
# Date...: 23/01/2013
# License: Version 2 of the GPL. Do not change the author. You must specify the original author.
$hostVCenter = "myVcenter"
$datastore = "Iomega"
$vm = "Srv1"
add-pssnapin VMware.VimAutomation.Core
#Connection to Vcenter
Connect-VIServer $hostVCenter
#changing mail details
#Get Date and time start
$date = Get-Date -Format "dd/MM/yyyy"
$time = (Get-Date -f "HH:mm")
$subject = "VM migration ",$vm
$body = "VM Migration start: ",$vm," - ",$date," ",$time
C:\Scripts\powercli\sendmail.ps1
#Migration
Move-Vm -Datastore $dataStore -VM $vm
#changing mail details
#Get Date and time end
$date = Get-Date -Format "dd/MM/yyyy"
$time = (Get-Date -f "HH:mm")$body = "VM Migration end: ",$vm," - ",$date," ",$time
C:\Scripts\powercli\sendmail.ps1
-------------------------------------
If you will use this code please, leave a message.
# Author.: Michele Pavan
# Date...: 23/01/2013
# License: Version 2 of the GPL. Do not change the author. You must specify the original author.
$hostVCenter = "myVcenter"
$datastore = "Iomega"
$vm = "Srv1"
add-pssnapin VMware.VimAutomation.Core
#Connection to Vcenter
Connect-VIServer $hostVCenter
#changing mail details
#Get Date and time start
$date = Get-Date -Format "dd/MM/yyyy"
$time = (Get-Date -f "HH:mm")
$subject = "VM migration ",$vm
$body = "VM Migration start: ",$vm," - ",$date," ",$time
C:\Scripts\powercli\sendmail.ps1
#Migration
Move-Vm -Datastore $dataStore -VM $vm
#changing mail details
#Get Date and time end
$date = Get-Date -Format "dd/MM/yyyy"
$time = (Get-Date -f "HH:mm")$body = "VM Migration end: ",$vm," - ",$date," ",$time
C:\Scripts\powercli\sendmail.ps1
-------------------------------------
If you will use this code please, leave a message.
Transform DNS dynamic record in static
dnscmd fqdn.servername /recordadd zonename servername A ipaddress servername
IIS 6 e Windows 2008 UPN authentication
Oggi, mio malgrado ho scoperto che l'autenticazione UPN cioè nella forma nomeutente@nomedominio non funziona su II6 (windows 2003) con domain controller windows 2008 R2.
Per risolvere è necessario installare questo aggiornamento:http://support.microsoft.com/kb/956114
Per risolvere è necessario installare questo aggiornamento:http://support.microsoft.com/kb/956114
Etichette:
active directory,
IIS,
Windows,
windows 2008 R2
Iscriviti a:
Post (Atom)