Hello guest, if you read this it means you are not registered. Click here to register in a few simple steps, you will enjoy all features of our Forum.
Rules have been updated! Here

Tags
Author: MaskedUser - Replies: 1 - Views: 3879
Remove Update Components (Dism)
Batch file Script to remove Update Components from Win After Every Update. Function is to save space on HDD or SSD via deleting unneeded Update Component Files using Dism.

run cmds as admin one by one :

Code:
DISM.exe /online /Cleanup-Image /StartComponentCleanup
DISM.exe /online /Cleanup-Image /SPSuperseded
DISM.exe /online /Cleanup-Image /StartComponentCleanup /ResetBase
Author: MaskedUser - Replies: 0 - Views: 3806
AIO Win10 Pro 1909 Build 18363.388 Virtual Machine(Guest OS) by Disk2019
AIO Windows 10 Pro 1909 (Build 18363.388) Virtual Machine is created for All In One Virtual OS Apps like Virtualbox & VMWare Wotrkstation .

Edit Your vbox file for Virtualbox & vmx file for VMware Workstation according to your system config ie Processor Cores & Everything Else.

This Virtual Machine is Created for those Brothers who are lazy installing & Configuring Virtual Machines for File Analysis & Virtualization process.

Works on Both Virtualbox & VMWARE Workstation Flawlessly without any
Author: MaskedUser - Replies: 2 - Views: 3218
Some Small Utilities by Disk2019
Windows Winsxs Update / Component Cleaner With Resetbase Function to Save Disk Space :

Code:
https://www.mirrored.to/files/1ZX1HSJF/Start-WindowsCleanup.exe_links

Reset Windows Update if Updates Result in any MS Error :

Code:
https://www.mirrored.to/files/1TNWUU6U/Reset-WindowsUpdate.exe_links

Completely Remove OneDrive From Your Windows :

Code:
https://www.mirrored.to/files/MN1XSGDW/Remove-OneDrive.exe_links

Thanks & Regards 1
Author: MaskedUser - Replies: 14 - Views: 13645
AIOWARES Edition Useful Portable Utilities
Win10 Tweaker:

[code]

@echo off & Title Windows 10 Tweaker & color 17
:: ----------------------------------------------------------
echo          Get Admin Privilege
:: ----------------------------------------------------------
REM  --> Check for permissions
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
REM --> If error flag set, we do not have admin.
if '%errorlevel%' NEQ '0' (    echo Requesting administrative privileges...    goto UACPrompt) else ( goto g