Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cavo789/vbs_classes
VBS scripts and classes that will help Windows users to collect a list of files based on extensions and utilities to work with Access, Excel and SQL Server
https://github.com/cavo789/vbs_classes
automation excel msaccess sql vba vbscript windows
Last synced: about 1 month ago
JSON representation
VBS scripts and classes that will help Windows users to collect a list of files based on extensions and utilities to work with Access, Excel and SQL Server
- Host: GitHub
- URL: https://github.com/cavo789/vbs_classes
- Owner: cavo789
- License: mit
- Created: 2017-11-08T15:04:14.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2021-11-01T20:16:45.000Z (about 3 years ago)
- Last Synced: 2024-06-18T00:38:34.371Z (7 months ago)
- Topics: automation, excel, msaccess, sql, vba, vbscript, windows
- Language: VBScript
- Homepage:
- Size: 228 KB
- Stars: 13
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - cavo789/vbs_classes - VBS scripts and classes that will help Windows users to collect a list of files based on extensions and utilities to work with Access, Excel and SQL Server (VBScript)
README
# Windows - Script utilities for Windows, MS Office and SQL Server
![Banner](./banner.svg)
This repository contains VBS classes that will help any VBS developpers.
> See also my [MS Access repository](https://github.com/cavo789/ms_access) which contains VBA code for MS Access (to place in a module within a database)
## Table of content
- [Debug](#debug)
- [Files](#files)
- [Folders](#folders)
- [MSAccess](#msaccess)
- [MSExcel](#msexcel)
- [MSSQL](#mssql)
- [ScanFolder](#scanfolder)
- [SendMail](#sendmail)
- [Windows](#windows)## Debug.vbs
Helpers to help debugging a .vbs script
See [documentation](https://github.com/cavo789/vbs_scripts/blob/master/src/classes/Debug.md)
## Files.vbs
Provide functionnalities for working with files under Windows.
See [documentation](https://github.com/cavo789/vbs_scripts/blob/master/src/classes/Files.md)
## Folders.vbs
Helpers to help working with folders
See [documentation](https://github.com/cavo789/vbs_scripts/blob/master/src/classes/Folders.md)
## MSAccess.vbs
Provide functionnalities for working with MS Access databases.
See [documentation](https://github.com/cavo789/vbs_scripts/blob/master/src/classes/MSAccess.md)
## MSExcel.vbs
Provide functionnalities for working with MS Excel workbooks.
See [documentation](https://github.com/cavo789/vbs_scripts/blob/master/src/classes/MSExcel.md)
## MSSQL.vbs
Provide functionnalities for working with SQL Server databases.
See [documentation](https://github.com/cavo789/vbs_scripts/blob/master/src/classes/MSSQL.md)
## ScanFolder.vbs
ScanFolder is aiming to scan recursively a folder and search for f.i. text files (`.txt`, `.csv`, `.md`, ...), Excel files (`.xlsx`, `.xlam`, ...), collect the list of filenames and output them in a text file so that file can be used by an another business logic.
See [documentation](https://github.com/cavo789/vbs_scripts/blob/master/src/classes/ScanFolder.md)
## SendMail.vbs
Provide a simple solution to send emails
See [documentation](https://github.com/cavo789/vbs_scripts/blob/master/src/classes/SendMail.md)
## Windows.vbs
This script exposes a VB Script class for working with the operating system.
See [documentation](https://github.com/cavo789/vbs_scripts/blob/master/src/classes/Windows.md)