Skip to content

Instantly share code, notes, and snippets.

@hymkor
Created September 10, 2014 16:11
Show Gist options
  • Save hymkor/3e464220474e001e5e25 to your computer and use it in GitHub Desktop.
Save hymkor/3e464220474e001e5e25 to your computer and use it in GitHub Desktop.
Special folder を得る VBScript
Option Explicit
dim objShell,arg1
set objShell = WScript.CreateObject("WScript.Shell")
for each arg1 in WScript.Arguments
WScript.Echo( objShell.SpecialFolders(arg1) )
next
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment