2022. 5. 30. 16:02

Getting a device ID

2021. 11. 23. 14:34

How to change the foreground window

2021. 9. 15. 18:49

App Container

2020. 11. 26. 18:53

Windows Station & Desktops

2018. 10. 5. 13:36

Hiding user accounts on the windows logon screen

Hiding Unused User Accounts on the Windows 7 Logon Screen


Possible values in the UserList registry(HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList key)

  • 0: Hide the user account on the Windows logon screen.
  • 1: Show the user account on the Windows logon screen.
  • 65536(0x10000): Hide the user account on the Windows logon screen and control panel.


2018. 9. 4. 17:07

How to change the password complexity on Windows

Using secedit


summary

  1. Export a configuration
    • secedit /export /cfg C:\securityconfig.cfg
  2. Modify the configuration
  3. Import the configuration
    • secedit /configure /db C:\Windows\security\new.sdb /cfg C:\securityconfig.cfg /areas SECURITYPOLICY


2018. 6. 22. 15:57

Getting a installed progrm list on windows.

  1. Registry
    • I implemented the logic using this way. It works well almost, but the result of this logic is different from the Windows's.
  2. appwiz.cpl

 

 

2018. 6. 21. 18:15

Implementing Control Panel Items

2018. 3. 20. 10:01

Process Token Dumper

Process Token Dumper Part 1: The Basics

Process Token Dumper part 2 Codewalk


2018. 1. 29. 11:14

User Rights and Privileges

User Rights and Privileges


We can add privileges to the groups or uses by the Security Policy consoles, but we can't add privileges to the existing token according to this article