How to Disable or Enable Vista User Access Control in Command Prompt Come disattivare o attivare Vista utente di controllo di accesso nel prompt dei comandi
There are many possible way to Ci sono molti modo possibile per turn off or turn on User Access Control disattivare o attivare il controllo di accesso utente (UAC) in Windows Vista, which frequently pop up a confirmation dialog window to asking for permissions to continue a task which requires elevated administrator rights. (UAC) in Windows Vista, che spesso aprirà un'altra finestra di dialogo di conferma a chiedere autorizzazioni a continuare un compito che richiede elevati diritti di amministratore. Normally UAC cannot be enabled or disabled by using GUI-based Control Panel. UAC normalmente non possono essere attivate o disattivate tramite interfaccia grafica basata su Pannello di controllo. For programmers or developers, it may be useful to be able to enable or disable UAC by using CLI (command line interface) commands, which can be used to automate tasks in batch script. Per i programmatori o gli sviluppatori, può essere utile per essere in grado di attivare o disattivare utilizzando UAC CLI (interfaccia della riga di comando) comandi, che può essere utilizzato per automatizzare compiti in batch script.
The ability to enable or disable UAC from command prompt is actually using a trick to turn off or on UAC by using registry key. La capacità di attivare o disattivare UAC dal prompt dei comandi è in realtà utilizzando un trucco per spegnere o su UAC utilizzando chiave del Registro di sistema. Simply open command prompt window and run the following command: Basta aprire finestra del prompt dei comandi ed eseguire il seguente comando:
To Disable UAC Per disattivare UAC
C:\Windows\System32\cmd.exe /k %windir%\System32\reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 0 /f C: \ Windows \ System32 \ cmd.exe / k% windir% \ System32 \ reg.exe ADD HKLM \ SOFTWARE \ Microsoft \ Windows \ CurrentVersion \ Policies \ System / v EnableLUA / t REG_DWORD / d 0 / f
To Enable UAC Per consentire l'UAC
C:\Windows\System32\cmd.exe /k %windir%\System32\reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 1 /f C: \ Windows \ System32 \ cmd.exe / k% windir% \ System32 \ reg.exe ADD HKLM \ SOFTWARE \ Microsoft \ Windows \ CurrentVersion \ Policies \ System / v EnableLUA / t REG_DWORD / d 1 / f
After the command, computer needs to be restarted to the change to be effective. Dopo il comando, computer deve essere riavviato per il cambiamento per essere efficace.
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. IMPORTANTE: Questa è una pagina tradotta macchina che è fornito "così com'è" senza alcuna garanzia. Machine translation may be difficult to understand. Traduzione automatica può essere difficile da capire. Please refer to Si prega di fare riferimento a original English article articolo originale inglese whenever possible. quando possibile.
Share and contribute or get technical support and help at Condividere e contribuire o ottenere supporto tecnico e assistenza in My Digital Life Forums La mia vita digitale Forum .
Related Articles Articoli correlati
- How to Enable and Turn On Hibernation Feature in Windows Vista Come attivare e attivare la funzionalità di ibernazione in Windows Vista
- The Call to DllRegisterServer Failed with Error Code 0×80004005 on Windows Vista La chiamata alla non riuscita DllRegisterServer con il codice di errore 0 × 80004005 su Windows Vista
- Activate, Enable and Show Administrator Account in Vista Welcome Screen Attivare, attivare e mostrare account amministratore in Vista schermata
- How to Open Elevated Command Prompt with Administrator Privileges in Windows Vista Come aprire elevata prompt dei comandi con privilegi di amministratore in Windows Vista
- Enable or Disable Built-in Administrator Account in Windows Vista Attivare o disattivare Built-in account amministratore in Windows Vista
- Emulate Expanded (EMS) Memory Support in Vista with EMS Magic Emulare Expanded (EMS) Supporto di memoria in Vista con EMS Magic
- How to Change Windows Vista Product Key Come modificare Windows Vista "Product Key"
- Disable and Turn Off (or Enable or Turn On) Data Execution Prevention (DEP) in Windows Vista Disattivare e disattivare (o Attiva o Attiva) Data Execution Prevention (DEP) in Windows Vista
- Vista IE7 “No Connection to the Internet is Currently Available” Error Vista IE7 "Nessun collegamento a Internet è attualmente disponibile" Errore
- Easier Way to Take Ownership and Grant Access Files or Directories in Vista Modo più semplice per assumere la proprietà e Grant accedere a file o directory in Vista

































April 23rd, 2007 23:48 23 aprile 2007 23:48
Or you could just type msconfig and goto tools then down to Disable UAC In alternativa è possibile solo digitare msconfig e strumenti goto poi giù per Disattiva UAC
June 25th, 2007 14:07 25 giugno, 2007 14:07
I do this, and I end up with a oh-so-wonderful “Access is denied” in the MS-DOS window that appears… Lo faccio, e mi ritroverete con un oh-so-wonderful "Accesso negato" nella finestra MS-DOS che appare…
June 25th, 2007 15:29 25 giugno, 2007 15:29
You need to launch as administrator. Avete bisogno di lanciare come amministratore.