Multi-Monitor Size and Position I want to save and restore Multi-Mointor size and position? Can I do it in vbs? Thanks Allen ... 2 Feb 2010 17:34
Dsget command I would like to know if someone can explain to me what the script do becasue the way understand it parses from a text file or copying from a template user in AD . Thank you in advance for shedding some light on the script. if exist %temp%\!%uid%*.txt del %temp%\!%uid%*.txt set from_dsn=CN=_netcour_Template,... 2 Feb 2010 17:34
Vbscript to validate a streaming URL I am trying to create a VBS that can validate if a stream is available online. I know how to test if a URL is valid with something like that: Set Shell = CreateObject( "WScript.Shell" ) dim strURL strURL = "http://www.msn.com/" Set objHTTP = CreateObject("MSXML2.XMLHTTP") objHTTP.open "HEAD", strURL, false ob... 2 Feb 2010 17:34
Need to create a VB script for Microsoft Outlook Hi Folks, I am a newbie to VB scripting. I have this problem I need to solve in outlook. Often we have seen when people reply to emails, they say "please see my comments inline marked BlahBlah". Whenever people do such inline commenting, I would like the script to copy that info to the top of that email, along... 2 Feb 2010 17:34
How to create a share and set the NTFS rights *in a remote computer*? Hi everybody, I would like to create a function in vbs like this : --------------------------------------- createFolder(path, rights, share, shareName) where : * "path" is a local path (ok) or a UNC path like \\PC\share (here is the problem) * "right" is a string which sets the NTFS rights * "sha... 5 Feb 2010 19:35
Script for uninstalling an Outlook add-in administratively (.exe) I have this script that I am trying to automate, but the Send Keys are not working: Option Explicit Dim strComputer, strMSI, MSIapp, App, AppToRemove, objShell strComputer = "." set objShell = CreateObject("WScript.Shell") '======================================== AppToRemove = "Cisco MeetingPlace for Ou... 2 Feb 2010 17:34
start IE in protected mode I have vbscript that starts IE with Set oIE = CreateObject("InternetExplorer.Application"). How do I do the same but in protected mode? Thank, LJB ... 2 Feb 2010 17:34
Regular expression : f(" l'éléphant blEu-azUr ") = " L'Éléphant Bleu-Azur " Hi every body, I would like to make a function in vbs equivalent in string.title() in Python. Here is some examples : f("heLLo every bODY!") = "Hello Every Body! f("it isn't True") = "It Isn'T True" f(" l'�l�pHAnt blEu-azUr ") = " L'�l�phant Bleu-Azur " To sum up : UCase() just for the firt letter... 26 Jan 2010 17:49
Copy Folders and it's content from a text file. I have a script that searches a drive for a specific folder name and writes to a text file with the path. I would like to create a sub routine to then read the text and make a copy of that folder and contents to a USB Hard drive. (If possible with a progress bar to show me the status of the copy operation . ) H... 6 Feb 2010 21:50
Searching for Field Names Sorry guys, I did not know where to post this question. I need to search all my .asp and html files for a field name. The name of the field is SchlDstrct. I have over 2,500 pages and have run into some kind of weird problem with this field in my databases. It goes without sayin that I cannot remember wher... 22 Jan 2010 00:46 |