Powershell
Automazione Windows con Powershell
Cambiare il nome ad un PC
$name = get-wmiobject w32_computersystem $name.rename("ANOTHER_NAME")
Controllare che il ReturnValue del comando sia 0.
Cambiare la password macchina di un PC
Reset-ComputerMachinePassword -Credential UNIMORE\username -Server domain.unimore.it
Fare il join di un PC
add-computer -domainname UNIMORE -credential username