Saturday, June 16, 2018

Solved "Your Windows License Will Expire Soon" in Windows 10 and 8 Code

Solved Your Windows License Will Expire Soon in Windows 10 and 8 Code
Solved "Your Windows License Will Expire Soon" in Windows 10 and 8 Code Code : @echo off title Windows 10 ALL version activator&cls&echo **********************************&echo Supported products:&echo - Windows 10 Home&echo - Windows...

Repair Start Menu Not Working In Windows 10 PowerShell Commands

Repair Start Menu Not Working In Windows 10 PowerShell Commands
Repair Start Menu Not Working In Windows 10 PowerShell Commands Windows PowerShell Commands Are : Get-AppxPackage | % { Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml" -verbose } OR Get-AppXPackage -AllUsers...

Enable Group Policy Editor (gpedit.msc) In Windows 10 Home Code

Enable Group Policy Editor (gpedit.msc) In Windows 10 Home Code
Enable Group Policy Editor (gpedit.msc) In Windows 10 Home Code Code :  @echo off  pushd "%~dp0"  dir /b %SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientExtensions-Package~3*.mum >List.txt  dir /b %SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientTools-Package~3*.mum...

Delete all liked YouTube Videos at Once Code

Delete all liked YouTube Videos at Once Code
Delete all liked YouTube Videos at Once Code Code is : var items = $('body').getElementsByClassName("pl-video-edit-remove-liked-video"); for(var i = 0; i < items.length; i++){     items[i].click(); } ...