-
When I freshly install Windows 11 the created user account will be by default an administrator account. Using this account for everyday use is considered as bad for security reasons. If I understand correctly, the recommended way by most resources I found is to have 2 accounts:
Could you @HotCakeX please ellaborate how exactly you recommend creating and using accounts, especially im combiantion with your scripts? Some open questions I have in my mind:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi @hgj44d Thanks for bringing this up, it's something that's been on my mind for a while too. I did some research about this topic after you posted it and here are the findings. The best approach is the official one, so during OS installation, sign in using your MSA, log into Windows, set up everything and run the Harden Windows Security Module. There is no difference in privileges between the built-in Administrator account and the Administrator account that you create first during Windows clean installation. The only difference is the lack of UAC prompts (by default) for built-in Administrator account, but when you run the PowerShell hardening script, it will activate the UAC prompts for the built-in Administrator account too. Using built-in Administrator account is not recommended due to security reasons explained here. In conclusion:
The script/module needs administrator privileges for 95% of the security measures to be applied, so run it once with an Admin account and then run it again, without administrator privileges, in Standard account(s). The order doesn't really matter but naturally you first have an Admin account and then a Standard account. Related official resources:
|
Beta Was this translation helpful? Give feedback.
Hi @hgj44d
Thanks for bringing this up, it's something that's been on my mind for a while too. I did some research about this topic after you posted it and here are the findings.
The best approach is the official one, so during OS installation, sign in using your MSA, log into Windows, set up everything and run the Harden Windows Security Module.
There is no difference in privileges between the built-in Administrator account and the Administrator account that you create first during Windows clean installation. The only difference is the lack of UAC prompts (by default) for built-in Administrator account, but when you run the PowerShell hardening script, it will activate the UAC prompts fo…