이 응답은 자동으로 번역되었습니다. 따라서 문법 오류 또는 이상한 표현이 있을 수 있습니다.
안녕하세요. Pingu고객님
Microsoft 커뮤니티에 오신 것을 환영합니다.
나는 당신의 문제를 지적했습니다. 이로 인해 불쾌한 경험을 한 것에 대해 사과드립니다.
언어 문제와 관련하여 (이것은 버그이며 현재 해결책이 없습니다) :
새 Outlook 및 Outlook 웹에서 최근에 발견된 알려진 오류로 인해 사용자가 다른 언어로 전환할 수 없습니다. Microsoft는 이 문제를 해결하기 위해 노력하고 있으며 수정하는 과정에 있습니다. 향후 답변에서이 수정 사항을 알려 드리겠습니다.
이로 인해 불편을 끼쳐 드려 죄송합니다. 커뮤니티 포럼은 기술 지원 포럼이며 개발 팀은 커뮤니티를 실시간으로 모니터링하지 않습니다. 이 문제를 개발 팀과 공유하려면 Outlook 리본의 도움말 탭에서 피드백을 선택하여 보고할 수 있습니다.
메일이 새 Outlook을 여는 문제와 관련하여 (이것은 Microsoft의 디자인이지만 현재이 문제에 대한 해결책을 찾았습니다) :
관리자 권한으로 PowerShell을 열고 다음 코드를 입력합니다. (영어로만 제공)
#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"
어떻게 진행되고 있는지 알려주시면 필요한 경우 추가로 도와드리겠습니다.
감사합니다
욜란다 - MSFT | Microsoft 커뮤니티 지원 전문가