'link/window general'에 해당되는 글 71건
- 2022.05.30 Getting a device ID
- 2021.11.23 How to change the foreground window
- 2021.09.15 App Container
- 2020.11.26 Windows Station & Desktops
- 2018.10.05 Hiding user accounts on the windows logon screen
- 2018.09.04 How to change the password complexity on Windows
- 2018.06.22 Getting a installed progrm list on windows.
- 2018.06.21 Implementing Control Panel Items
- 2018.03.20 Process Token Dumper
- 2018.01.29 User Rights and Privileges
2022. 5. 30. 16:02
Getting a device ID
2022. 5. 30. 16:02 in link/window general
2021. 11. 23. 14:34
How to change the foreground window
2021. 11. 23. 14:34 in link/window general
2021. 9. 15. 18:49
App Container
2021. 9. 15. 18:49 in link/window general
2020. 11. 26. 18:53
Windows Station & Desktops
2020. 11. 26. 18:53 in link/window general
2018. 10. 5. 13:36
Hiding user accounts on the windows logon screen
2018. 10. 5. 13:36 in link/window general
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
2018. 9. 4. 17:07 in link/window general
summary
- Export a configuration
- secedit /export /cfg C:\securityconfig.cfg
- Modify the configuration
- 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.
2018. 6. 22. 15:57 in link/window general
- Registry
- I implemented the logic using this way. It works well almost, but the result of this logic is different from the Windows's.
- appwiz.cpl
- How to list all installed programs of my xp?
- appwiz.cpl is actually the COM server, so we can use interfaces of it. However, I guess this functionality is undocumented.
- How to list installed programs using IShellAppManamger
2018. 6. 21. 18:15
Implementing Control Panel Items
2018. 6. 21. 18:15 in link/window general
2018. 3. 20. 10:01
Process Token Dumper
2018. 3. 20. 10:01 in link/window general
2018. 1. 29. 11:14
User Rights and Privileges
2018. 1. 29. 11:14 in link/window general
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