importation initiale dans git

This commit is contained in:
2013-08-27 15:14:44 +04:00
commit 39f9ee159c
687 changed files with 125329 additions and 0 deletions

21
legacy/vbsinc/base Normal file
View File

@@ -0,0 +1,21 @@
' -*- coding: utf-8 -*-
Set sh = CreateObject("WScript.Shell")
Set fso = CreateObject("Scripting.FileSystemObject")
windir = fso.getspecialfolder(0).path
programs = sh.specialfolders("Programs")
allprograms = sh.specialfolders("AllUsersPrograms")
If allprograms = "" Then
allprograms = programs
End If
desktop = sh.specialfolders("Desktop")
alldesktop = sh.specialfolders("AllUsersDesktop")
If alldesktop = "" Then
alldesktop = desktop
End If
' Répertoire de base. On assume que c'est le répertoire qui contient le script
basedir = wscript.scriptfullname
basedir = Mid(basedir, 1, Len(basedir) - Len(wscript.scriptname) - 1)