This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Windows Registry Editor Version 5.00 | |
| ; Disable Wallpaper Compression | |
| ; There is a plenty of tutorials available, | |
| ; but this .reg file does everything needed | |
| ; for those who are lazy or dumb enough to | |
| ; not mess with the Registry Editor UI. | |
| ; Made by Lucas Gabriel (lucmsilva) | |
| ; https://github.com/lucmsilva651 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| REM Credits to https://stackoverflow.com/a/10052222 | |
| REM And https://sites.google.com/site/eneerge/scripts/batchgotadmin | |
| :: BatchGotAdmin | |
| :------------------------------------- | |
| REM --> Check for permissions | |
| IF "%PROCESSOR_ARCHITECTURE%" EQU "amd64" ( | |
| >nul 2>&1 "%SYSTEMROOT%\SysWOW64\cacls.exe" "%SYSTEMROOT%\SysWOW64\config\system" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class main { | |
| public static void main(String[] args) { | |
| System.out.println("Hello World!"); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var userAgent = navigator.userAgent.toLowerCase(); | |
| var devices = new Array('nokia','iphone','blackberry','sony','lg','htc_tattoo','samsung','symbian','SymbianOS','elaine','palm','series60','windows ce','android','obigo','netfront','openwave','mobilexplorer','operamini'); | |
| var url_redirect = 'http://www.example.com'; | |
| function mobiDetect(userAgent, devices) { | |
| for(var i = 0; i < devices.length; i++) { | |
| if (userAgent.search(devices[i]) > 0) { | |
| return true; | |
| } | |
| } | |
| return false; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| :: Source: https://medium.com/wireless-bidet/how-to-activate-windows-10-using-command-prompt-9c5d248f3420 | |
| :: The Win10Lite Team condemns piracy in all forms. Only run this script if you know what it does. | |
| :: BatchGotAdmin below | |
| :------------------------------------- | |
| title Administrator rights required |