Skip to content

Instantly share code, notes, and snippets.

@hymkor
Created May 16, 2015 06:03
Show Gist options
  • Save hymkor/ba3f85daa22f156f5ecc to your computer and use it in GitHub Desktop.
Save hymkor/ba3f85daa22f156f5ecc to your computer and use it in GitHub Desktop.
ゴミ箱にファイルを捨てる JScript
var shellApp = new ActiveXObject("Shell.Application");
var trashBox = shellApp.NameSpace(10);
var fsObj = new ActiveXObject("Scripting.FileSystemObject");
for(var i=0 ; i <WScript.Arguments.length ; i++ ){
var arg1 = WScript.Arguments(i);
var path1 = fsObj.GetAbsolutePathName(arg1);
trashBox.MoveHere(path1);
}
@hymkor
Copy link
Author

hymkor commented Jul 22, 2015

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment