1. Go to HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows/CurrentVersion/Shell/Update/Packages
2. Make 32bit dword "UndockingDisabled" and set value to 1 (hexadecimal)
3. Restart PC.
1. Go to HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows/CurrentVersion/Shell/Update/Packages
2. Make 32bit dword "UndockingDisabled" and set value to 1 (hexadecimal)
3. Restart PC.
1. Go to services and disable windows update and set recovery options to "take no action"
2. In computer management go to Task Scheduler-> Task Scheduler Library -> Microsoft -> Windows -> Windows Update and disable scheduled start
3. Restart Pc
Option 1:
1. Run gpedit.msc
2. Go to Computer Configuration>Administrative Templates>Windows Components>Microsoft Defender Antivirus>Real-time Protection
3. In the right pane of Real-time Protection in the Local Group Policy Editor, double click/tap on the Turn off real-time protection policy to edit it. (see screenshot above)
4. Select (dot) Enabled. (see screenshot below)
5. Click/tap on OK, and go to step 7 below.
6. Open Windows Security.
7. Click/tap on Virus & threat protection. (see screenshot below)
8. Click/tap on the Manage settings link under Virus & threat protection settings. (see screenshot below
9. Turn Off
10. Run This exe : windows-defender-remover"
Option 2:
1. Run regedit
2. go to
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection] "DisableRealtimeMonitoring"=dword:00000001
3. add
DisableRealtimeMonitoring (Dword 32bit) and change value to one
4.
10. Run This exe : windows-defender-remover"
import json import os from jinja2 import Template def convert_json_to_html(input_file, output_file): try: with open(input_file, 'r', encoding='utf-8') as file: json_data = json.load(file) bookmarks = [] for item in json_data: bookmark = { 'id': item['id'], 'title': item['title'], 'url': item['url'], 'lastVisitTimeLocal': item['lastVisitTimeLocal'], 'lastVisitTimeUTC': item['lastVisitTimeUTC'], 'typedCount': item['typedCount'], 'visitCount': item['visitCount'] } bookmarks.append(bookmark) template_content = """Bookmarks Bookmarks
{% for bookmark in bookmarks %}{% endfor %} """ template = Template(template_content) rendered_html = template.render(bookmarks=bookmarks) with open(output_file, 'w', encoding='utf-8') as file: file.write(rendered_html) except FileNotFoundError: print(f"File '{input_file}' not found.") except Exception as e: print(f"Failed to convert JSON to HTML: {e}") # Prompt the user to enter the path to the local JSON file json_file_path = input("Enter the path to the local JSON file: ").strip() try: output_file = f"{os.path.splitext(os.path.basename(json_file_path))[0]}.html" convert_json_to_html(json_file_path, output_file) except FileNotFoundError: print(f"File '{json_file_path}' not found.") except Exception as e: print(f"Error: {e}"){{ bookmark.title }}
Last Visit: {{ bookmark.lastVisitTimeLocal }} (UTC: {{ bookmark.lastVisitTimeUTC }})
Typed Count: {{ bookmark.typedCount }}, Visit Count: {{ bookmark.visitCount }}