Using VBScript to read though a set of registry keys
I’m currently doing another deployment of Acrobat Reader, this time with VBScript. I wrote about using Visual Basic to do that here. Function CheckForPro ' returns TRUE if Acrobat…
I’m currently doing another deployment of Acrobat Reader, this time with VBScript. I wrote about using Visual Basic to do that here. Function CheckForPro ' returns TRUE if Acrobat…
.Net 2 is not the default framework option … No, you get .Net 4. To change it, you select Project / <your project name> Properties / Compile / Advanced Compile…
Balloon Tips from the System Tray (SysTray) (note to self, must add a NotifyIcon to get this to work) NotifyIcon.ShowBalloonTip Method Minimizing to the SysTray Minimizing and Restoring from the…
The problem we have with a corporate deployment of Acrobat Reader, was that we need to uninstall various older versions of Acrobat Reader. Normally to do this, you need to…
set IE = WScript.CreateObject("InternetExplorer.Application") dim ObjTitle IE.Navigate("about:blank") IE.Document.Title = "Software Update" IE.FullScreen = 1 IE.Left = 0 IE.Top = 0 IE.MenuBar = 0 IE.Toolbar = 0 IE.StatusBar = 0 IE.Width …
I was trying to copy some files to a group to a computers. What I’d do is check if the computer is alive first, by doing a network ping. If…
is a fault in software, or hardware for that matter, which breaks something. For example, if you make software which links my Microsoft Calendar to my Google Calendar, and your…
As I finish up version 1 of InstallRunner, I went to set the UAC setting for “Require Administrator Privileges”. I did that, and got this error: Doing some research*, the…
Event handling in VB.Net Getting the item under mouse cursor in a Listview control Add ListView column and insert ListView rows The Java2s site doesn’t look like much, but it’s…
When you install a program, particularly via an install script (VBscript, PowerShell etc.), it’s always good practice to check the Exit Code the program returns. Just in case the program…