If..Else Hello there, I am trying to find or to write a script that will do the following. I have a doc file in a network share example: \\server10800\mivdak\mivdak.doc the script will be run from local computer. When i will start the script it should look if the following exists: c:\program files\microsoft... 2 Dec 2009 07:38
Determine the number of bits in a negative number I'd like to determine the number of bits (the position of the highest on bit) in a negative number (say -1) without using knowledge of its type. Valid operations would be AND, OR, XOR, negation, and one's compliment can be done as: 'Get a -1 of the same type as myvar Dim minus1: minus1 = myvar - (myvar + 1) ... 2 Dec 2009 21:13
keylogger with dynamicwrapperx case study #4 hi, keys recorder can be useful sometimes this sample requires dynamicwrapperx a dark and frightening russian component ;-) keys are recorded into a default file named keylog.txt from the starting folder press Shift + Esc to quit the logger it's a beta release with no oem keys support enjoy '****************... 1 Dec 2009 12:47
reading registry entries whose name have backslashes in them Say you're in regedit and in the HKEY_CURRENT_USER\whatever\whatever you have a bunch of entries with backslashes in their name. How would you read those registry entries? An example of this is the following: HKCU\Software\Microsoft\Windows\ShellNoRoam\MUICache A lot of the entry names are paths. If the path... 1 Dec 2009 19:35
Permission denied MsgBox I need to add scripting capabilities to an existing application. I read some docuentation about Active Scripting and wrote a small application to execute VBScript code. The program seems working fine with simple code such as i=10. However, When I try to call MsgBox function, it returned an error message that p... 30 Nov 2009 13:38
Posting NNTP message with script. I can use the CDO.message object to send email with a script. I would like to do the same thing with a newsgroup message. Can anybody point me to directions? -- Crash Certified Dilettante ... 2 Dec 2009 06:33
batch file to display ip address when rollover clock hi guys/gals, i am very new to batch scripting and was wondering how would i go about creating a batch file to display a pc ip address and a message when the mouse rolls over the clock area of the task bar? thanks in advance ... 29 Nov 2009 15:43
Application.OnTime Not Working I have created the following VBS code: MyTest Set objExcel = CreateObject("Excel.Application") MsgBox "Before OnTime" objExcel.Application.OnTime Now + TimeValue("00:00:05"), "MyTest" MsgBox "After OnTime" Sub MyTest() MsgBox "MyTest" End Sub The first thing I see is "MyTest", verifies Sub MyTest() is ... 26 Nov 2009 12:00
Getting a VBS to run every second without it completely fryinga server David Kerber wrote: In article <e9937939-8bd9-4852-bd47-9368620099b9 @u20g2000vbq.googlegroups.com>, specialist(a)adamwebdesign.com says... Hi everyone, I don't often do a lot of VBS work, but in this case I need to be able to schedule a task within Windows and the code was already largely writt... 24 Nov 2009 19:02
Windows SBS 2008 logon script problem HI, I am having a problem with a script that I have in user logon that maps some drives I need. Here is an example of the script: Dim objNetwork Set objNetwork = CreateObject("WScript.Network") objNetwork.MapNetworkDrive "L:", "\\server\share" objNetwork.MapNetworkDrive "Y:", "\\server\share1" In the cl... 18 Nov 2009 14:38 |