Tôi muốn xem tên tập tin được tô màu khi tôi gõ dir trong Powershell. Vì vậy, tôi đã thêm chức năng Set-ChildItemColor từ đây vào tệp hồ sơ của mình. Tôi cũng đã thêm dòng này vào cuối tệp hồ sơ để ghi đè bí danh dir:
Set-Alias dir Get-ChildItemColor
Bây giờ, khi tôi mở Powershell, tôi gặp lỗi này:
Set-Alias : The AllScope option cannot be removed from the alias 'dir'.
At C:\Users\joe\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1:82
char:10
+ Set-Alias <<<< dir Get-ChildItemColor
+ CategoryInfo : WriteError: (dir:String) [Set-Alias], SessionStateUna
uthorizedAccessException
+ FullyQualifiedErrorId : AliasAllScopeOptionCannotBeRemoved,Microsoft.PowerShe
ll.Commands.SetAliasCommand
AllScope này là gì? Làm thế nào để tôi loại bỏ tùy chọn đó để có được màu dir?
Không chắc chắn tại sao điều này đã bị đóng .. Tôi đã có chính xác điều này ("Không thể xóa tùy chọn AllScope") và câu trả lời dưới đây đã giải quyết vấn đề của tôi.
—
John Fouhy