Search found 182 matches
- Wed May 05, 2010 12:59 am
- Forum: Other Scripting Languages
- Topic: Modify Script
- Replies: 9
- Views: 7553
Modify Script
No sense of adventure JVierra... ;oP
- Wed May 05, 2010 12:36 am
- Forum: Other Scripting Languages
- Topic: Modify Script
- Replies: 9
- Views: 7553
Modify Script
Alright, try this, in the Windows_Onload sub, make this modification: txt_drivepath.Value = strDrive txt_drivepath.Disabled = True Then, add the following sub: Sub txt_username_onKeyUp() txt_DrivePath = strDrive & txt_username.Value End Sub Each time a key is pressed and then released (i.e. typing a...
- Mon Apr 26, 2010 12:58 am
- Forum: VBScript
- Topic: Application Inventory
- Replies: 3
- Views: 1259
Application Inventory
I would say it would depend on what application you want information about. The Win32_Product class will only list items installed with Windows Installer (msiexec.exe). If you want information about all applications installed, then you'll have to use the registry method parsing HKEY_LOCAL_MACHINESOF...
- Fri Apr 23, 2010 6:50 am
- Forum: VBScript
- Topic: Help with vbscript to display a message
- Replies: 3
- Views: 1611
Help with vbscript to display a message
Woo hoo...I'm right....I think that make me 1 for 314
- Fri Apr 23, 2010 3:54 am
- Forum: VBScript
- Topic: Help with vbscript to display a message
- Replies: 3
- Views: 1611
Help with vbscript to display a message
Well, first question. Why ARE you disabling the account? How are planning on displaying this message? When the user attempts to login, they're going to get a standard windows message that their account has been disabled and to contact the administrator. They won't run any login scripts, so how do yo...
- Tue Mar 09, 2010 11:18 pm
- Forum: VBScript
- Topic: Scripting Excel question
- Replies: 1
- Views: 839
Scripting Excel question
JVierra, I was going guess that it was the default property of .Cells, but couldn't find it in MSDN for .Cells. Anyway, isn't that what Visual Studio boastssuggests "strongly-typed" code for, to eliminate "doubt"? To add to your answer in that case, would it be safe to say that not specifying the pr...
- Fri Mar 05, 2010 1:39 am
- Forum: Other Scripting Languages
- Topic: Determining if a object exists
- Replies: 3
- Views: 5007
Determining if a object exists
Open the HTA, click Next, then Back, then Next again and the error pops up. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html><head> <META http-equiv=Content-Type content="text/html; CHARSET=iso-8859-1"> <title>Example</title> <style type="text/css"> body { font-family:Verdana; fon...
- Thu Mar 04, 2010 6:25 am
- Forum: Other Scripting Languages
- Topic: Determining if a object exists
- Replies: 3
- Views: 5007
Determining if a object exists
Been quiet in the HTA forum, everyone must be developing in PowerShell forms or something!!! In the HTA I'm working on, I'm listing folders that meet certain criteria. Based on the number of folders returned I'm doing diffrent things. No folders (0) stops the whole thing. One folder I populate the c...
- Thu Feb 11, 2010 4:58 am
- Forum: VBScript
- Topic: local user profile
- Replies: 3
- Views: 1333
local user profile
Yes. Assuming every computer is online and you have administrative priveledges on those computers. You could get all valid computernames from Active Directory via a ADO search (http://www.rlmueller.net/ADOSearchTips.htm), PING the computer and then attempt to connect and parse the registry (HKEY_LOC...
- Thu Feb 11, 2010 1:54 am
- Forum: VBScript
- Topic: Automating Remote Assistance
- Replies: 3
- Views: 7992
Automating Remote Assistance
I've parused the web for solutions on this. We are in the progress of testing Win 7, but skipped Vista, so the bulk of the infrastructure is XP. We have a button "Start Remote Assist" on a HTA or whatever, that when clicked opens hcp://CN=Microsoft%20Corporation,L=Redmond,S=Washington,C=US/Remote%20...