Recent content by krdondon


  1. Solved windows11. I want to command the command to turn off sleep mode.

    I've found a way. It's not "-X". I'll go with "/X." Thank you. POWERCFG /X -monitor-timeout-ac 0 POWERCFG /X -monitor-timeout-dc 0 POWERCFG /X -disk-timeout-ac 0 POWERCFG /X -disk-timeout-dc 0 POWERCFG /X -standby-timeout-ac 0 POWERCFG /X -standby-timeout-dc 0 POWERCFG /X -hibernate-timeout-ac...
  2. Solved windows11. I want to command the command to turn off sleep mode.

    I used the following command in Windows 10. POWERCFG -X -monitor-timeout-ac 0 POWERCFG -X -monitor-timeout-dc 0 POWERCFG -X -disk-timeout-ac 0 POWERCFG -X -disk-timeout-dc 0 POWERCFG -X -standby-timeout-ac 0 POWERCFG -X -standby-timeout-dc 0 POWERCFG -X -hibernate-timeout-ac 0 POWERCFG -X...
  3. The registry is restored strangely Win10

    thank you. I have registered. :) And this problem also occurs in Windows 11.
  4. The registry is restored strangely Win10

    windows 10 insider kr REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v "WinStationsDisabled" /t REG_SZ /d 1 /f I definitely `WinStationsDisabled` disable it with 1. I checked by running `regedit`. Change has been confirmed. But when I check that my computer...
  5. Solved certutil disallowedcertstl.cab I'm trying to block a list of bad certificates. This is a related question.

    https://support.microsoft.com/en-us/topic/an-automatic-updater-of-untrusted-certificates-is-available-for-windows-vista-windows-server-2008-windows-7-and-windows-server-2008-r2-117bc163-d9e0-63ad-5a79-e61f38be8b77 https://github.com/asheroto/Root-Certificate-Updater/issues/9 I learned how to...
  6. certlm.msc How to block invalid signing certificate creation?.

    I want to prevent my computer from automatically registering expired signature certificates. I recently found a way to bulk delete untrusted certificates. So I deleted all the expired certificates. However. My computer was automatically re-enrolled with a bad certificate. (After some time, my...
  7. Solved AllowAdministratorLockout = 1 Security What is this? I wonder what function it is.

    secedit /export /cfg cfg.ini AllowAdministratorLockout = 1 It's on the list of security settings. Does this setting allow admins?. Or... is it just a lock function? It doesn't come up when I search for it. I don't use admin. So I want to increase security. AllowAdministratorLockout = 0 ...
  8. location Allow Deny Overrides ? win11

    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\location HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\location In my case it didn't work. It's like any other register. I've tried both and it's...
  9. location Allow Deny Overrides ? win11

    Unfortunately, I am a Korean speaker in Seoul. I'm looking for a registry(regedit) that can stop this. I don't speak English, so I used Google Translate. thank you. Allow location override Allow apps such as Remote Desktop to set the location of this device I want to block.(off) With...
  10. Solved Empty the download folder. powershell command.

    powershell.exe -Command "& {Get-ChildItem $env:USERPROFILE\downloads,$env:USERPROFILE\Pictures| Remove-Item -recurse}" Creates a comma in the middle. Thank you.
  11. Solved Empty the download folder. powershell command.

    Get-ChildItem $env:USERPROFILE\downloads $env:USERPROFILE\Pictures | Remove-Item -recurse Error occurred. $env:USERPROFILE\downloads $env:USERPROFILE\Pictures I want to write two paths at once. Is it possible?. powershell.exe -Command "& {Get-ChildItem $env:USERPROFILE\downloads | Remove-Item...
Back
Top Bottom