Uso del nuovo Outlook su Windows per la comunicazione professionale e la produttività
La risposta è stata tradotta automaticamente. Di conseguenza, potrebbero esserci errori grammaticali o parole insolite.
Cara Gixi Martuscelli,
Benvenuto nella community Microsoft.
Ho notato il tuo problema. Stai cercando di tornare all'app Mail? Il nuovo Outlook non è un aggiornamento di Mail. Puoi provare a cercare l'app Mail nella barra di ricerca del sistema per vedere se si apre e funziona normalmente. Se l'app Mail continua a reindirizzarti a New Outlook, puoi provare il seguente metodo.
Aprire PowerShell come amministratore e immettere il codice seguente. (Solo in inglese)
#Define the current user’s name
$username = $env:USERNAME
# Define the path of the folder to be operated on.
$folderPath = "C:\Users\$username\AppData\Local\Packages\microsoft.windowscommunicationsapps_8wekyb3d8bbwe\LocalState\Migration"
# Define the path of the file to delete
$fileToDelete = "$folderPath\settings.json"
# 1. Delete the specified file (if it exists)
if (Test-Path -Path $fileToDelete) {
Remove-Item -Path $fileToDelete -Force
Write-Host "File $fileToDelete has been deleted."
} else {
Write-Host "File $fileToDelete does not exist."
}
# Get the username of the current logged-in user
$currentUser = [System.Security.Principal.WindowsIdentity]::GetCurrent().Name
# 2. Get the Access Control List (ACL) of the folder
$acl = Get-Acl -Path $folderPath
# Define a new access rule to deny write access for the current user
$denyWriteRule = New-Object System.Security.AccessControl.FileSystemAccessRule($currentUser, "Write", "Deny")
# Add the deny write access rule to the folder's ACL
$acl.AddAccessRule($denyWriteRule)
# Apply the modified ACL to the folder
Set-Acl -Path $folderPath -AclObject $acl
# Output the result of the operation
Write-Host "Write access denied for $currentUser on $folderPath"
Fammi sapere come va, sono qui per aiutarti ulteriormente se necessario.
Migliori saluti
Yolanda - MSFT | Specialista del supporto della community Microsoft