Notepad on Windows 11 now integrates AI-driven rewriting capabilities, allowing users to rapidly rephrase, condense, or modify the tone and format of their text. This feature, powered by GPT technology, provides several rewriting options directly within Notepad, streamlining text editing and improving workflow efficiency. Below are detailed instructions for enabling and using Rewrite AI in Notepad, as well as managing AI credits and troubleshooting common issues.
How to Enable Rewrite AI in Notepad
Step 1: Open the Notepad app on your Windows 11 system. If you do not have the latest version, update Notepad via the Microsoft Store to ensure Rewrite AI is available. The feature requires Notepad version 11.2410.17.0
or later.
Step 2: Click the Settings (gear) icon in the top-right corner of the Notepad window. This opens the settings menu, where you can control AI features.

Step 3: Under the AI Features section, locate the Copilot toggle. Switch it to On to activate Rewrite AI. If you prefer to disable the feature, simply turn the toggle off. Changes take effect immediately, but you may need to restart Notepad for the setting to apply in some cases.

Activating Rewrite AI requires signing in with a Microsoft account. This authentication is necessary because the AI processing occurs in the cloud and uses AI credits associated with your Microsoft account.
How to Use Rewrite AI in Notepad
Step 1: Open a text file or type the content you want to modify in Notepad. Highlight the specific text you wish to rewrite, or leave nothing selected to apply changes to the entire document.
Step 2: Initiate the Rewrite AI feature using one of these methods:
- Click the Copilot button on the top right and select Rewrite from the options.
- Click the Rewrite button in the Notepad toolbar.
- Right-click the selected text and choose Rewrite from the context menu.
- Use the keyboard shortcut
Ctrl + I
for a quick default rewrite. - Click the arrow next to the Rewrite button to access additional options such as Make shorter, Make longer, Change tone, or Change format.

Step 3: Choose the rewrite option that matches your needs:
- Rewrite: Generates a new version of your text with general improvements.
- Make shorter: Condenses the text while retaining the core message.
- Make longer: Expands on the original content, adding detail.
- Change tone: Adjusts the tone to formal, casual, inspirational, or humorous styles.
- Change format: Switches the text format to paragraph, list, academic, marketing, or poetry.

Step 4: Wait for Notepad to process your request. The AI will display up to three alternative rewrites. Use the Next and Previous arrows to preview each version.
Step 5: If satisfied with a suggestion, click Replace to substitute your original text with the AI-generated rewrite. Alternatively, use Copy to place the rewritten text on your clipboard for use elsewhere, or Discard to exit without making changes. If you want a different result, adjust the settings and select Try again to generate new options.

Each use of Rewrite AI consumes one AI credit. The feature is designed for quick, context-aware editing, making it practical for drafting emails, summarizing notes, or rewording technical documentation.
Managing AI Credits in Notepad
AI operations in Notepad are limited by a monthly credit system. The number of credits you receive depends on your Microsoft account or subscription:
- Free Microsoft accounts start with a fixed number of AI credits (typically 50 total, not replenished).
- Microsoft 365 Personal or Family subscribers receive 60 credits per month, automatically refreshed at the start of each month.
- Copilot Pro subscribers get a higher or unlimited quota, depending on their plan.
To check your remaining credits, click your profile icon in the top-right corner of Notepad. The credit balance is displayed in the dropdown menu. If you run out of credits, you can subscribe to a qualifying Microsoft service to receive more.
Disabling or Blocking Rewrite AI (Optional)
Organizations or users concerned with privacy or compliance may wish to disable Rewrite AI. The most effective method is using the Notepad settings as described above. For broader or automated control, especially in enterprise environments, consider these approaches:
Group Policy and Registry Methods
For administrators, deploying Group Policy Objects (GPOs) or registry changes can turn off Rewrite AI across multiple machines:
- Recent Windows 11 ADMX templates include options for managing Notepad AI features. Import the latest templates and configure the relevant policy to disable Rewrite in Notepad.
- If GPO is not an option, use a PowerShell script to modify the registry setting that controls Rewrite AI. The setting is stored in an application hive, which may require loading and unloading the hive while Notepad is closed. Example PowerShell script:
# Disable Rewrite AI Feature for Notepad
reg load HKU\TEMP "$env:LOCALAPPDATA\Packages\Microsoft.WindowsNotepad_8wekyb3d8bbwe\Settings\settings.dat" >$null
$regContent = @'
Windows Registry Editor Version 5.00
[HKEY_USERS\TEMP\LocalState]
"RewriteEnabled"=hex(5f5e10b):00,e0,d1,c5,7f,ee,83,db,01
'@
New-Item "$env:TEMP\DisableRewrite.reg" -Value $regContent -Force | Out-Null
regedit.exe /s "$env:TEMP\DisableRewrite.reg"
Start-Sleep 1
reg unload HKU\TEMP >$null
Remove-Item "$env:TEMP\DisableRewrite.reg" -Force -ErrorAction SilentlyContinue
Always ensure Notepad is closed before running scripts that modify its settings, as the application locks its settings file while open.
Availability and Limitations
Rewrite AI in Notepad is available to Windows 11 users in specific regions (including the US, UK, France, Canada, Italy, and Germany), with expanded access for Microsoft 365 and Copilot Pro subscribers in additional countries. The feature is not present in Windows 10 or earlier Notepad versions. Results are most accurate in English, and AI-generated content is filtered to prevent inappropriate output, but users should still review suggestions for accuracy and appropriateness.
By activating and using Rewrite AI in Notepad, you can quickly rephrase, shorten, or reformat your text without leaving the app—streamlining your editing process and saving time on repetitive writing tasks.
Member discussion