| 58 | |
| 59 | {{{ |
| 60 | Turn On/Off Suggestions |
| 61 | |
| 62 | On : |
| 63 | [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\SmartActionPlatform\SmartClipboard] |
| 64 | "Disabled"=dword:00000000 |
| 65 | |
| 66 | reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\SmartActionPlatform\SmartClipboard" /v "Disabled" /t REG_DWORD /d "0" /f |
| 67 | |
| 68 | Off: |
| 69 | [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\SmartActionPlatform\SmartClipboard] |
| 70 | "Disabled"=dword:00000000 |
| 71 | |
| 72 | reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\SmartActionPlatform\SmartClipboard" /v "Disabled" /t REG_DWORD /d "1" /f |
| 73 | |