View ShellBrowse.vbs
This file contains 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
Option Explicit | |
' Flags for the options parameter | |
Const BIF_returnonlyfsdirs = &H0001 | |
Const BIF_dontgobelowdomain = &H0002 | |
Const BIF_statustext = &H0004 | |
Const BIF_returnfsancestors = &H0008 | |
Const BIF_editbox = &H0010 | |
Const BIF_validate = &H0020 | |
Const BIF_browseforcomputer = &H1000 |
View parameters.vbs
This file contains 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
Class Person | |
Private m_Age | |
Private m_Name | |
Public Default Function Init(Name, Age) | |
m_Name = Name | |
m_Age = Age | |
Set Init = Me | |
End Function |
View dom.wsf
This file contains 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
<job> | |
<script language="JScript"> | |
var oDOM = WScript.GetObject("http://www.google.com"); | |
do { | |
WScript.sleep(200); | |
} while(oDOM.readyState != "complete") | |
WScript.echo(oDOM.documentElement.outerHTML) | |
</script> |
View rot13.js
This file contains 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 rot13(c){ | |
return c.replace(/([a-m])|([n-z])/ig, function($0,$1,$2){ | |
return $1 ? String.fromCharCode($1.charCodeAt(0) + 13) : | |
$2 ? String.fromCharCode($2.charCodeAt(0) - 13) : $0; }); | |
} |
View permutation.js
This file contains 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 perm = (function(){ | |
function perm(xs, ys, o){ | |
if(ys.length){ | |
for(var i=0,v;(v=xs+ys.charAt(i)),i<ys.length;i++){ | |
o[v] = 1; | |
perm(v, ys.slice(0,i) + ys.slice(i + 1),o) | |
} | |
} | |
} | |
return function(ys){ |
View ANTParsing.ps1
This file contains 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
set-psdebug -strict | |
cd C:\Users\-TNO-\Desktop\batik | |
$xml = get-content build.xml | |
$targets = $xml.selectNodes('/project/target') | |
$buildTargets = [Xml.XmlElement[]]$xml.selectNodes("//target[preceding-sibling::comment()[contains(.,'Build ..')]" + | |
" and " + | |
"following-sibling::comment()[contains(.,'Generates maven')]]") | |
$props = @{'${basedir}' = Get-Item .} | |
function antcall([Xml.XmlElement]$this,[HashTable]$tg){ |
View htmlTitleList.vbs
This file contains 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
'Reference: <http://www.visualbasicscript.com/tm.aspx?high=&m=95638&mpage=1> | |
Option Explicit | |
Dim fso : Set fso = CreateObject("Scripting.FileSystemObject") | |
Dim files : Set files = fso.GetFolder("C:\test\").Files | |
Dim file | |
For Each file In files | |
If file.Type = "Firefox Document" Then '<-- update for your system | |
Dim doc : Set doc = CreateObject("htmlfile") | |
doc.write fso.OpenTextFile(file.Path).ReadAll() |
View fileType.js
This file contains 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
//Reference: <https://groups.google.com/group/comp.lang.javascript/browse_thread/thread/684ad16518c837a2/67d00aa5dbe854c2?show_docid=67d00aa5dbe854c2> | |
var listFileTypes = (function(){ | |
var fso = new ActiveXObject("Scripting.FileSystemObject"); | |
var shell = new ActiveXObject("WScript.Shell"); | |
function isKnown(file){ | |
var fName = file.Name; | |
//the rules of capitalization are strange in windows... | |
//there are rare cases where this can fail | |
//for example: .HKEY_CLASSES_ROOT\.HeartsSave-ms |
View SendKeys.hta
This file contains 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
<!doctype html> | |
<html> | |
<!--Reference <http://www.visualbasicscript.com/tm.aspx?high=&m=95682&mpage=1#95682> --> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=UTF-8"> | |
<title>Send Keys</title> | |
<script type="text/vbscript"> | |
Sub Sleep(intTimeWait) | |
Dim Shell : Set Shell = CreateObject("WScript.Shell") | |
Shell.Run "%comspec% /c ping.exe 127.0.0.1 -w 1000 -n " & _ |
View SEEK.hta
This file contains 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
<!doctype html> | |
<html> | |
<!-- ref: <https://groups.google.com/group/comp.lang.javascript/browse_thread/thread/684ad16518c837a2/fbfd4c2610bc8832?show_docid=fbfd4c2610bc8832> --> | |
<head> | |
<meta charset="utf-8" /> | |
<hta:application | |
applicationname="SEEK" | |
version="1.0"> | |
<title>SEEK</title> | |
<style type="text/css"> |
OlderNewer