Batch administrator privileges

Most of the time CMD command request Administrator privileges to run. Lets make a batch auto check if have admin privileges @echo off goto check_Permissions :check_Permissions echo. echo ADMINISTRATOR LEVEL REQUESTED. CHECKING PERMISSIONS … echo. net session >nul 2>&1 if %errorLevel% == 0 ( echo Success: ADMINISTRATION LEVEL PERMISSION CONFIRMED echo. cls ) else ( echo … Read more

Windows 10 missing network protocols Fixed

After upgrading to Windows 10 I lost my connectivity, Lan and wireless. The error : one or more network protocols are missing from this computer I found this command FIX the problem: Open CMD (administrator rights) Type :  netsh winsock reset catalog Reboot If still limited connection, try to uninstall Avast antivirus. Should be work now, if … Read more