Такой вот скриптик запущенный 1 раз на системе решит проблемму. (Искал искал не нашёл и налобал сам.)
Код:
![Выделить весь код](images/misc/selectcode.png)
__author__ = 'abudkar'
import win32net
import win32security
def main():
all_groups = [g['name'] for g in win32net.NetLocalGroupEnum('', 0)[0]]
for group in all_groups:
sid = str(win32security.LookupAccountName('', group)[0]).replace('PySID:', '')
standardGroup = StandardGroups.get(sid, '')
if standardGroup and standardGroup != group:
info = win32net.NetLocalGroupGetInfo('', group, 0)
info['name'] = standardGroup
print('Renaming: `{}` to: `{}`'.format(group, standardGroup).encode('utf-8'))
win32net.NetLocalGroupSetInfo('', group, 0, info)
#http://support.microsoft.com/kb/243330/en-us
StandardGroups = {
'S-1-0': 'Null Authority',
'S-1-0-0': 'Nobody',
'S-1-1': 'World Authority',
'S-1-1-0': 'Everyone',
'S-1-16-0': 'Untrusted Mandatory Level',
'S-1-16-12288': 'High Mandatory Level',
'S-1-16-16384': 'System Mandatory Level',
'S-1-16-20480': 'Protected Process Mandatory Level',
'S-1-16-28672': 'Secure Process Mandatory Level',
'S-1-16-4096': 'Low Mandatory Level',
'S-1-16-8192': 'Medium Mandatory Level',
'S-1-16-8448': 'Medium Plus Mandatory Level',
'S-1-2': 'Local Authority',
'S-1-2-0': 'Local',
'S-1-2-1': 'Console Logon',
'S-1-3': 'Creator Authority',
'S-1-3-0': 'Creator Owner',
'S-1-3-1': 'Creator Group',
'S-1-3-2': 'Creator Owner Server',
'S-1-3-3': 'Creator Group Server',
'S-1-3-4': 'Owner Rights',
'S-1-4': 'Non-unique Authority',
'S-1-5': 'NT Authority',
'S-1-5-1': 'Dialup',
'S-1-5-10': 'Principal Self',
'S-1-5-11': 'Authenticated Users',
'S-1-5-12': 'Restricted Code',
'S-1-5-13': 'Terminal Server Users',
'S-1-5-14': 'Remote Interactive Logon',
'S-1-5-15': 'This Organization',
'S-1-5-17': 'This Organization',
'S-1-5-18': 'Local System',
'S-1-5-19': 'NT Authority',
'S-1-5-2': 'Network',
'S-1-5-20': 'NT Authority',
'S-1-5-3': 'Batch',
'S-1-5-32-544': 'Administrators',
'S-1-5-32-545': 'Users',
'S-1-5-32-546': 'Guests',
'S-1-5-32-547': 'Power Users',
'S-1-5-32-548': 'Account Operators',
'S-1-5-32-549': 'Server Operators',
'S-1-5-32-550': 'Print Operators',
'S-1-5-32-551': 'Backup Operators',
'S-1-5-32-552': 'Replicators',
'S-1-5-32-554': 'Pre-Windows 2000 Compatible Access',
'S-1-5-32-555': 'Remote Desktop Users',
'S-1-5-32-556': 'Network Configuration Operators',
'S-1-5-32-557': 'Incoming Forest Trust Builders',
'S-1-5-32-558': 'Performance Monitor Users',
'S-1-5-32-559': 'Performance Log Users',
'S-1-5-32-560': 'Windows Authorization Access Group',
'S-1-5-32-561': 'Terminal Server License Servers',
'S-1-5-32-562': 'Distributed COM Users',
'S-1-5-32-569': 'Cryptographic Operators',
'S-1-5-32-573': 'Event Log Readers',
'S-1-5-32-574': 'Certificate Service DCOM Access',
'S-1-5-32-575': 'RDS Remote Access Servers',
'S-1-5-32-576': 'RDS Endpoint Servers',
'S-1-5-32-577': 'RDS Management Servers',
'S-1-5-32-578': 'Hyper-V Administrators',
'S-1-5-32-579': 'Access Control Assistance Operators',
'S-1-5-32-580': 'Remote Management Users',
'S-1-5-4': 'Interactive',
'S-1-5-5-X-Y': 'Logon Session',
'S-1-5-6': 'Service',
'S-1-5-64-10': 'NTLM Authentication',
'S-1-5-64-14': 'SChannel Authentication',
'S-1-5-64-21': 'Digest Authentication',
'S-1-5-7': 'Anonymous',
'S-1-5-8': 'Proxy',
'S-1-5-80': 'NT Service',
'S-1-5-80-0': 'All Services',
'S-1-5-9': 'Enterprise Domain Controllers'
}
if __name__ == '__main__':
main()