Home  >  Article  >  System Tutorial  >  How to turn off screenshots in win10

How to turn off screenshots in win10

下次还敢
下次还敢Original
2024-04-14 06:45:15368browse

How to turn off the screenshot function in Windows 10: Edit the registry and change the "ScreenshotIndex" value to "0". Through the Group Policy Editor, enable the "Disable Print Screen" policy. Create a .bat file and run the following command: REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer" /v ScreenshotIndex /t REG_DWORD /d 0 /f

How to turn off screenshots in win10

How to turn off the screenshot function in Windows 10?

Windows 10 offers a quick and easy way to take screenshots, but sometimes you might want to turn it off. Here's how to turn off this feature:

1. Edit the registry

  • Press "Windows Key R" to open the "Run" dialog box.
  • Enter "regedit" and press "Enter".
  • Navigate to the following registry key: "Computer\HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer"
  • In the right pane, right-click and select New > ;"DWORD (32-bit) value".
  • Name the new value "ScreenshotIndex".
  • Double-click the value and change its value data to "0" (disabled).

2. Through the Group Policy Editor

  • Press "Windows key R" to open the "Run" dialog box.
  • Enter "gpedit.msc" and press "Enter".
  • Navigate to the following Group Policy path: "User Configuration\Administrative Templates\Windows Components\File Explorer"
  • In the right pane, find and double-click the "Disable Print Screen" policy .
  • Select "Enable" and click "OK".

3. Use the shortcut

  • to create a text document.
  • Paste the following command into the document:
<code>REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer" /v ScreenshotIndex /t REG_DWORD /d 0 /f</code>
  • Save the file as a ".bat" file, such as "DisableScreenshot.bat".
  • Double-click the file to run the command and disable the screenshot feature.

Note:

  • After turning off the screenshot function, you will not be able to use the "PrtScn" key to take screenshots.
  • If you need to enable the screenshot feature again, follow the same steps and change the value data back to "1".

The above is the detailed content of How to turn off screenshots in win10. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn