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
<# | |
This re-registers all Store-like System Apps (Metro UI) on Windows 10. | |
This should be used to fix Apps not opening, immediately crashing after opening | |
or that appear to open but immediately close. If Cortana search bar does not work, | |
or is not shown while hitting the Windows key, this could potentially fix it. | |
It must be run as an admin in Powershell. Errors might come up, and probably can | |
be ignored. | |
#> |
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
$('#about-us .tabla a').each(function(){ | |
$.get($(this).attr('href'), function(html) { | |
var page = $($.parseHTML(html)); | |
var bars = page.find('.bar'); | |
var print = $(page.find('h2')[2]).text().trim() + "|"; | |
print += $($(bars[0])).text().replace("Correo:", "").trim() + "|"; | |
print += $($(bars[1])).text().replace("Tel.:", "").trim() + "|"; | |
page.find('.span6 > div a').each(function(){ |
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
<#################################################### | |
Huawei HG5XX default password generator | |
------------------------------------------------ | |
Based on Python script created | |
by http://websec.mx (mac2wepkey) | |
####################################################> | |
Function Mac-To-WepKey { | |
Param ( | |
[Parameter(Mandatory = $True, ValueFromPipeline = $True, HelpMessage = "MAC Address of the router (with or without ':')")] | |
[string]$MacAddress, |
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
Function Reto-Tabla { | |
Param ( | |
[Parameter(Mandatory=$True)] | |
[char]$Symbol, | |
[Parameter(Mandatory=$True)] | |
[int]$Number | |
) | |
$Header = " " + $Symbol + " | " |