Photo Gallery Member List Search Calendars FAQ Ticket List Log Out


RE: VB Script to compare with a reg key

 
Logged in as: Guest
arrSession:exec spGetSession 2,2,56712
 Active Users: There are 0 members and 0 guests.
 Users viewing this topic: none
 

 

 
  
  Printable Version
All Forums >> [Scripting] >> WSH & Client Side VBScript >> RE: VB Script to compare with a reg key
  Do you like VisualBasicScript.com? Link to us and help spread the word about our forum. Thanks!
Page: <<   < prev  1 2 [3] 4   next >   >>
Login
Message << Older Topic   Newer Topic >>
 RE: VB Script to compare with a reg key - 2/20/2008 5:03:23 AM   
  dmp_92

 

Posts: 70
Score: 0
Joined: 2/1/2008
Status: offline
I think I got it.

This is what I changed.

If objFolderA = LastRunDate  Then
WScript.Quit
End If

One last question,

I would like to change this section because the above section does the check.

For Each file in objFolderA.Files
   If DateDiff("n", file.DateLastModified, Now) =< 60 Then
          objFSO.CopyFile file.Path, UsbKey
   End If

I would like it to copy all files and folders to the usb key without a date check.

(in reply to ebgreen)
 
 
Post #: 41
 
 RE: VB Script to compare with a reg key - 2/20/2008 5:21:56 AM   
  ebgreen


Posts: 4595
Score: 29
Joined: 7/12/2005
Status: offline
If you want to copy without a date check then just get rid of the If - Then line and the End If line.

_____________________________

"... when you are good and crazy, oooh, oooh, oooh, the sky is the limit!" - The Tick
Goog places to start:http://www.visualbasicscript.com/m_24727/tm.htm
http://www.visualbasicscript.com/m_47117/tm.htm

(in reply to dmp_92)
 
 
Post #: 42
 
 RE: VB Script to compare with a reg key - 2/20/2008 5:48:46 AM   
  dmp_92

 

Posts: 70
Score: 0
Joined: 2/1/2008
Status: offline
I made a change and now I get some errors on a different piece of code.


Option Explicit
Dim strComputer, strMbox, ArrDriveType, WMI, coldisks, disk, strtype, strID, strSys, UsbKey, file, USBFound, varToday, Verify, LastRunDate, WshShell
Dim objFSO:Set objFSO=CreateObject("Scripting.FileSystemObject")
Dim objFolderA: Set objFolderA=objFSO.GetFolder("\\bluewater\departments$\Information Technology\test\")
Set WshShell = WScript.CreateObject("WScript.Shell")

'************** Check if scan has run today and if so exit ***************************


Set WshShell = CreateObject("Wscript.Shell")

varToday = Weekday(Date)

Verify = "HKEY_LOCAL_MACHINE\SOFTWARE\EMERGENCY PLANNING\"

LastRunDate = WshShell.RegRead(Verify & "File\")

WScript.Echo "I am comparing " & objFolderA & " TO " & LastRunDate


'If objFolderA.file = LastRunDate  Then
   'WScript.Quit
'End If

The error I get is when it trys to verify if the key is in the registry.  Once I removed the registry key I now get errors.  How do I tell it to continue if there is no registry key?

(in reply to ebgreen)
 
 
Post #: 43
 
 RE: VB Script to compare with a reg key - 2/20/2008 5:53:19 AM   
  ebgreen


Posts: 4595
Score: 29
Joined: 7/12/2005
Status: offline
Let's start by posting all of your code as you are currently running it.

_____________________________

"... when you are good and crazy, oooh, oooh, oooh, the sky is the limit!" - The Tick
Goog places to start:http://www.visualbasicscript.com/m_24727/tm.htm
http://www.visualbasicscript.com/m_47117/tm.htm

(in reply to dmp_92)
 
 
Post #: 44
 
 RE: VB Script to compare with a reg key - 2/20/2008 6:03:42 AM   
  dmp_92

 

Posts: 70
Score: 0
Joined: 2/1/2008
Status: offline
Here is all my code.

Option Explicit
Dim strComputer, strMbox, ArrDriveType, WMI, coldisks, disk, strtype, strID, strSys, UsbKey, file, USBFound, varToday, Verify, LastRunDate, WshShell
Dim objReg, keypath, return
Dim objFSO:Set objFSO=CreateObject("Scripting.FileSystemObject")
Dim objFolderA: Set objFolderA=objFSO.GetFolder("\\bluewater\departments$\Information Technology\test\")
Set WshShell = WScript.CreateObject("WScript.Shell")

'************** Check if scan has run today and if so exit ***************************


Set WshShell = CreateObject("Wscript.Shell")

varToday = Weekday(Date)

Verify = "HKEY_LOCAL_MACHINE\SOFTWARE\EMERGENCY PLANNING\"

'LastRunDate = WshShell.RegRead(Verify & "File\")

WScript.Echo "I am comparing " & LastRunDate & " TO " & Date()


'If objFolderA.file = LastRunDate  Then
   'WScript.Quit
'End If




' *************************************************************************************

strMbox = "."

strMbox = msgBox("Please insert your Emergency Planning usb key and press the enter key to continue")

If strMbox = 1 Then

   strmbox ="."

end if

strComputer = "."


arrDriveType = array("Unknown",_
           "No Root Directory",_
           "Removable Disk",_
           "Local Disk",_
           "Network Drive",_
           "Compact Disk",_
           "RAM Disk")

set WMI = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
set colDisks = WMI.ExecQuery("Select * from Win32_LogicalDisk")

For Each Disk in ColDisks

     strType = arrDriveType(Disk.DriveType)
     strID = Disk.DeviceID
     strSys = Disk.SystemName

     If strType = "Removable Disk" then

           'strMbox = MsgBox("USB drive letter is " & Disk.DeviceID)
           UsbKey = strId & "\"
           USBFound = True
     End If

Next

If USBFound = False Then
     MsgBox "No USB drive was found."
     WScript.Quit
End If

For Each file in objFolderA.Files
   'If DateDiff("n", file.DateLastModified, Now) =< 60 Then
          objFSO.CopyFile file.Path, UsbKey
   'End If


const HKEY_LOCAL_MACHINE = &H80000002
strComputer = "."
Set objReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\"&_
strComputer & "\root\default:StdRegProv")
KeyPath = "Software\Emergency Planning\File"
Return = objReg.CreateKey(HKEY_LOCAL_MACHINE, KeyPath)
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.RegWrite "HKLM\Software\Emergency Planning\File\", date()
'"Hello world!"

If (Return = 0) And (Err.Number = 0) Then

Wscript.Echo "HKEY_LOCAL_MACHINE\Software\Emergency Planning\File created"
Else
Wscript.Echo "CreateKey failed. Error = " & Err.Number
End If


MsgBox "All files have sucessfully copied"


Next

Set objFSO=Nothing

I got it working but I am still having an issue with the top part.

Line 17.

When you wipe the reg key or if the reg key is not there then I get this error "Invailid root in registry key"

(in reply to ebgreen)
 
 
Post #: 45
 
 RE: VB Script to compare with a reg key - 2/20/2008 6:07:33 AM   
  ebgreen


Posts: 4595
Score: 29
Joined: 7/12/2005
Status: offline
Put On Error Resume next right before you try to read the key. Then check the value of Err.Number to see if the read worked. Last, put On Error Goto 0 to put error handling back to normal.

_____________________________

"... when you are good and crazy, oooh, oooh, oooh, the sky is the limit!" - The Tick
Goog places to start:http://www.visualbasicscript.com/m_24727/tm.htm
http://www.visualbasicscript.com/m_47117/tm.htm

(in reply to dmp_92)
 
 
Post #: 46
 
 RE: VB Script to compare with a reg key - 2/20/2008 6:12:45 AM   
  dmp_92

 

Posts: 70
Score: 0
Joined: 2/1/2008
Status: offline
Okay When I put on error Resume next, it worked fine.  Since I didn't get at error I went on a changed it to On error Goto 0 and I got an error  Line 19 invalid root in registry key.

Option Explicit
Dim strComputer, strMbox, ArrDriveType, WMI, coldisks, disk, strtype, strID, strSys, UsbKey, file, USBFound, varToday, Verify, LastRunDate, WshShell
Dim objReg, keypath, return
Dim objFSO:Set objFSO=CreateObject("Scripting.FileSystemObject")
Dim objFolderA: Set objFolderA=objFSO.GetFolder("\\bluewater\departments$\Information Technology\test\")
Set WshShell = WScript.CreateObject("WScript.Shell")

'************** Check if scan has run today and if so exit ***************************


Set WshShell = CreateObject("Wscript.Shell")

varToday = Weekday(Date)

Verify = "HKEY_LOCAL_MACHINE\SOFTWARE\EMERGENCY PLANNING\"

On Error Goto 0

LastRunDate = WshShell.RegRead(Verify & "File\")

WScript.Echo "I am comparing " & LastRunDate & " TO " & Date()


'If objFolderA.file = LastRunDate  Then
'    WScript.Quit
'End If




' *************************************************************************************

strMbox = "."

strMbox = msgBox("Please insert your Emergency Planning usb key and press the enter key to continue")

If strMbox = 1 Then

   strmbox ="."

end if

strComputer = "."


arrDriveType = array("Unknown",_
           "No Root Directory",_
           "Removable Disk",_
           "Local Disk",_
           "Network Drive",_
           "Compact Disk",_
           "RAM Disk")

set WMI = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
set colDisks = WMI.ExecQuery("Select * from Win32_LogicalDisk")

For Each Disk in ColDisks

     strType = arrDriveType(Disk.DriveType)
     strID = Disk.DeviceID
     strSys = Disk.SystemName

     If strType = "Removable Disk" then

           'strMbox = MsgBox("USB drive letter is " & Disk.DeviceID)
           UsbKey = strId & "\"
           USBFound = True
     End If

Next

If USBFound = False Then
     MsgBox "No USB drive was found."
     WScript.Quit
End If

For Each file in objFolderA.Files
   'If DateDiff("n", file.DateLastModified, Now) =< 60 Then
          objFSO.CopyFile file.Path, UsbKey
   'End If


const HKEY_LOCAL_MACHINE = &H80000002
strComputer = "."
Set objReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\"&_
strComputer & "\root\default:StdRegProv")
KeyPath = "Software\Emergency Planning\File"
Return = objReg.CreateKey(HKEY_LOCAL_MACHINE, KeyPath)
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.RegWrite "HKLM\Software\Emergency Planning\File\", date()
'"Hello world!"

If (Return = 0) And (Err.Number = 0) Then

Wscript.Echo "HKEY_LOCAL_MACHINE\Software\Emergency Planning\File created"
Else
Wscript.Echo "CreateKey failed. Error = " & Err.Number
End If


MsgBox "All files have sucessfully copied"


Next

Set objFSO=Nothing

(in reply to ebgreen)
 
 
Post #: 47
 
 RE: VB Script to compare with a reg key - 2/20/2008 6:20:13 AM   
  ebgreen


Posts: 4595
Score: 29
Joined: 7/12/2005
Status: offline
Lookup some examples of the proper way to use On Error Resume Next, On Error Goto 0, and error handling in general in VBScript.

_____________________________

"... when you are good and crazy, oooh, oooh, oooh, the sky is the limit!" - The Tick
Goog places to start:http://www.visualbasicscript.com/m_24727/tm.htm
http://www.visualbasicscript.com/m_47117/tm.htm

(in reply to dmp_92)
 
 
Post #: 48
 
 RE: VB Script to compare with a reg key - 2/20/2008 6:50:22 AM   
  dmp_92

 

Posts: 70
Score: 0
Joined: 2/1/2008
Status: offline
Thank you for all your help.  Everything is working fine except one last thing.  We have been working on this section and I don't seem to have it correct yet.

'If objFolderA.file = LastRunDate  Then
'    WScript.Quit
'End If

I can't see to get the file date from objfolderA and compare it to the lastrundate.

(in reply to ebgreen)
 
 
Post #: 49
 
 RE: VB Script to compare with a reg key - 2/20/2008 7:01:39 AM   
  ebgreen


Posts: 4595
Score: 29
Joined: 7/12/2005
Status: offline
It looks like objFolderA is a Folder object. The Folder object does not have a .File property. It does have a .Files collection. Are you trying to compare the date of a file to the date that is stored in the reg key?

_____________________________

"... when you are good and crazy, oooh, oooh, oooh, the sky is the limit!" - The Tick
Goog places to start:http://www.visualbasicscript.com/m_24727/tm.htm
http://www.visualbasicscript.com/m_47117/tm.htm

(in reply to dmp_92)
 
 
Post #: 50
 
 RE: VB Script to compare with a reg key - 2/20/2008 7:05:00 AM   
  dmp_92

 

Posts: 70
Score: 0
Joined: 2/1/2008
Status: offline
That is exactly what I am trying to do.

(in reply to ebgreen)
 
 
Post #: 51
 
 RE: VB Script to compare with a reg key - 2/20/2008 7:07:25 AM   
  ebgreen


Posts: 4595
Score: 29
Joined: 7/12/2005
Status: offline
Then you need to look at a specific file in the folder not at the folder itself. Is there a specific file that should always be there?

_____________________________

"... when you are good and crazy, oooh, oooh, oooh, the sky is the limit!" - The Tick
Goog places to start:http://www.visualbasicscript.com/m_24727/tm.htm
http://www.visualbasicscript.com/m_47117/tm.htm

(in reply to dmp_92)
 
 
Post #: 52
 
 RE: VB Script to compare with a reg key - 2/20/2008 7:11:08 AM   
  dmp_92

 

Posts: 70
Score: 0
Joined: 2/1/2008
Status: offline
No, it's going to be a bunch of different files.

(in reply to ebgreen)
 
 
Post #: 53
 
 RE: VB Script to compare with a reg key - 2/20/2008 7:26:58 AM   
  ebgreen


Posts: 4595
Score: 29
Joined: 7/12/2005
Status: offline
Are you sure that the date/time stamp on the files will be changed when they are copied? Regardless, here is how you would do it:


For Each oFile In objFSO.GetFolder("\\bluewater\departments$\Information Technology\test\").files
   Set oLastFile = oFile
Next

dteFileDate = oLastFile.DateLastAccessed

strFileDate = Month(dteFileDate) & "/" & Day(dteFileDate) & "/" & Year(dteFileDate)

If strFileDate = LastRunDate  Then

_____________________________

"... when you are good and crazy, oooh, oooh, oooh, the sky is the limit!" - The Tick
Goog places to start:http://www.visualbasicscript.com/m_24727/tm.htm
http://www.visualbasicscript.com/m_47117/tm.htm

(in reply to dmp_92)
 
 
Post #: 54
 
 RE: VB Script to compare with a reg key - 2/20/2008 7:38:05 AM   
  dmp_92

 

Posts: 70
Score: 0
Joined: 2/1/2008
Status: offline
This section of code you have writte for me

If strFileDate = LastRunDate  Then
   WScript.Quit
End If

I have tested the file with no reg key and different files and it ends.  How about this code I know it errors


If strFileDate = LastRunDate  Then
   Goto NextSection
   Else
   WScript.Quit
End If




' *************************************************************************************
NextSection


strMbox = "."

strMbox = msgBox("Please insert your Emergency Planning usb key and press the enter key to continue")

If strMbox = 1 Then

   strmbox ="."

end if

(in reply to ebgreen)
 
 
Post #: 55
 
 RE: VB Script to compare with a reg key - 2/20/2008 7:44:19 AM   
  ebgreen


Posts: 4595
Score: 29
Joined: 7/12/2005
Status: offline
If strFileDate <> LastRunDate  Then 
     WScript.Quit
End If

_____________________________

"... when you are good and crazy, oooh, oooh, oooh, the sky is the limit!" - The Tick
Goog places to start:http://www.visualbasicscript.com/m_24727/tm.htm
http://www.visualbasicscript.com/m_47117/tm.htm

(in reply to dmp_92)
 
 
Post #: 56
 
 RE: VB Script to compare with a reg key - 2/20/2008 7:51:26 AM   
  dmp_92

 

Posts: 70
Score: 0
Joined: 2/1/2008
Status: offline
It still doesn't work.

Let me post what I have.

Option Explicit
Dim strComputer, strMbox, ArrDriveType, WMI, coldisks, disk, strtype, strID, strSys, UsbKey, file, USBFound, varToday, Verify, LastRunDate, WshShell
Dim objReg, keypath, return, NextSection
Dim objFSO:Set objFSO=CreateObject("Scripting.FileSystemObject")
Dim objFolderA: Set objFolderA=objFSO.GetFolder("\\bluewater\departments$\Information Technology\test\")
Set WshShell = WScript.CreateObject("WScript.Shell")

'************** Check if scan has run today and if so exit ***************************


Set WshShell = CreateObject("Wscript.Shell")

varToday = Weekday(Date)

Verify = "HKEY_LOCAL_MACHINE\SOFTWARE\EMERGENCY PLANNING\"

On Error Resume Next

LastRunDate = WshShell.RegRead(Verify & "File\")

WScript.Echo "I am comparing " & LastRunDate & " TO " & Date()


For Each oFile In objFSO.GetFolder("\\bluewater\departments$\Information Technology\test\").files
  Set oLastFile = oFile
Next

dteFileDate = oLastFile.DateLastAccessed

strFileDate = Month(dteFileDate) & "/" & Day(dteFileDate) & "/" & Year(dteFileDate)

If strFileDate <> LastRunDate  Then
    WScript.Quit
End If



'If strFileDate = LastRunDate  Then
'    Goto NextSection
'    Else
'    WScript.Quit
'End If




' *************************************************************************************
NextSection


strMbox = "."

strMbox = msgBox("Please insert your Emergency Planning usb key and press the enter key to continue")

If strMbox = 1 Then

   strmbox ="."

end if

strComputer = "."


arrDriveType = array("Unknown",_
           "No Root Directory",_
           "Removable Disk",_
           "Local Disk",_
           "Network Drive",_
           "Compact Disk",_
           "RAM Disk")

set WMI = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
set colDisks = WMI.ExecQuery("Select * from Win32_LogicalDisk")

For Each Disk in ColDisks

     strType = arrDriveType(Disk.DriveType)
     strID = Disk.DeviceID
     strSys = Disk.SystemName

     If strType = "Removable Disk" then

           'strMbox = MsgBox("USB drive letter is " & Disk.DeviceID)
           UsbKey = strId & "\"
           USBFound = True
     End If

Next

If USBFound = False Then
     MsgBox "No USB drive was found."
     WScript.Quit
End If

For Each file in objFolderA.Files
   'If DateDiff("n", file.DateLastModified, Now) =< 60 Then
          objFSO.CopyFile file.Path, UsbKey
   'End If


const HKEY_LOCAL_MACHINE = &H80000002
strComputer = "."
Set objReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\"&_
strComputer & "\root\default:StdRegProv")
KeyPath = "Software\Emergency Planning\File"
Return = objReg.CreateKey(HKEY_LOCAL_MACHINE, KeyPath)
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.RegWrite "HKLM\Software\Emergency Planning\File\", date()
'"Hello world!"

'If (Return = 0) And (Err.Number = 0) Then

'Wscript.Echo "HKEY_LOCAL_MACHINE\Software\Emergency Planning\File created"
'Else
'  Wscript.Echo "CreateKey failed. Error = " & Err.Number
'End If


Next

MsgBox "All files have sucessfully copied"

Set objFSO=Nothing

Now I do know it is running because of this section that prompts me WScript.Echo "I am comparing " & LastRunDate & " TO " & Date()

But then it ends the script.

I do not have any registry key entries and I have placed a new file in the test folder.

(in reply to ebgreen)
 
 
Post #: 57
 
 RE: VB Script to compare with a reg key - 2/20/2008 7:59:52 AM   
  ebgreen


Posts: 4595
Score: 29
Joined: 7/12/2005
Status: offline
So you want to check the date of a file and if it matches the date in the registry then quit?

_____________________________

"... when you are good and crazy, oooh, oooh, oooh, the sky is the limit!" - The Tick
Goog places to start:http://www.visualbasicscript.com/m_24727/tm.htm
http://www.visualbasicscript.com/m_47117/tm.htm

(in reply to dmp_92)
 
 
Post #: 58
 
 RE: VB Script to compare with a reg key - 2/20/2008 8:01:42 AM   
  dmp_92

 

Posts: 70
Score: 0
Joined: 2/1/2008
Status: offline
Yes, but if there is no reg key then continue with script

(in reply to ebgreen)
 
 
Post #: 59
 
 RE: VB Script to compare with a reg key - 2/20/2008 8:04:14 AM   
  ebgreen


Posts: 4595
Score: 29
Joined: 7/12/2005
Status: offline
This code should do it. You should remove the global On Error Resume Next.



Option Explicit
Dim strComputer, strMbox, ArrDriveType, WMI, coldisks, disk, strtype, strID, strSys, UsbKey, file, USBFound, varToday, Verify, LastRunDate, WshShell
Dim objReg, keypath, return, NextSection
Dim objFSO:Set objFSO=CreateObject("Scripting.FileSystemObject")
Dim objFolderA: Set objFolderA=objFSO.GetFolder("\\bluewater\departments$\Information Technology\test\")
Set WshShell = WScript.CreateObject("WScript.Shell")

'************** Check if scan has run today and if so exit ***************************


Set WshShell = CreateObject("Wscript.Shell")

varToday = Weekday(Date)

Verify = "HKEY_LOCAL_MACHINE\SOFTWARE\EMERGENCY PLANNING\"

On Error Resume Next
LastRunDate = "NONE"
LastRunDate = WshShell.RegRead(Verify & "File\")

WScript.Echo "I am comparing " & LastRunDate & " TO " & Date()


For Each oFile In objFSO.GetFolder("\\bluewater\departments$\Information Technology\test\").files
Set oLastFile = oFile
Next

dteFileDate = oLastFile.DateLastAccessed

strFileDate = Month(dteFileDate) & "/" & Day(dteFileDate) & "/" & Year(dteFileDate)

If strFileDate = LastRunDate  Then
   WScript.Quit
End If



'If strFileDate = LastRunDate  Then
'    Goto NextSection
'    Else
'    WScript.Quit
'End If




' *************************************************************************************
NextSection


strMbox = "."

strMbox = msgBox("Please insert your Emergency Planning usb key and press the enter key to continue")

If strMbox = 1 Then

  strmbox ="."

end if

strComputer = "."


arrDriveType = array("Unknown",_
          "No Root Directory",_
          "Removable Disk",_
          "Local Disk",_
          "Network Drive",_
          "Compact Disk",_
          "RAM Disk")

set WMI = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
set colDisks = WMI.ExecQuery("Select * from Win32_LogicalDisk")

For Each Disk in ColDisks

    strType = arrDriveType(Disk.DriveType)
    strID = Disk.DeviceID
    strSys = Disk.SystemName

    If strType = "Removable Disk" then

          'strMbox = MsgBox("USB drive letter is " & Disk.DeviceID)
          UsbKey = strId & "\"
          USBFound = True
    End If

Next

If USBFound = False Then
    MsgBox "No USB drive was found."
    WScript.Quit
End If

For Each file in objFolderA.Files
  'If DateDiff("n", file.DateLastModified, Now) =< 60 Then
         objFSO.CopyFile file.Path, UsbKey
  'End If


const HKEY_LOCAL_MACHINE = &H80000002
strComputer = "."
Set objReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\"&_
strComputer & "\root\default:StdRegProv")
KeyPath = "Software\Emergency Planning\File"
Return = objReg.CreateKey(HKEY_LOCAL_MACHINE, KeyPath)
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.RegWrite "HKLM\Software\Emergency Planning\File\", date()
'"Hello world!"

'If (Return = 0) And (Err.Number = 0) Then

'Wscript.Echo "HKEY_LOCAL_MACHINE\Software\Emergency Planning\File created"
'Else
'  Wscript.Echo "CreateKey failed. Error = " & Err.Number
'End If


Next

MsgBox "All files have sucessfully copied"

Set objFSO=Nothing

_____________________________

"... when you are good and crazy, oooh, oooh, oooh, the sky is the limit!" - The Tick
Goog places to start:http://www.visualbasicscript.com/m_24727/tm.htm
http://www.visualbasicscript.com/m_47117/tm.htm

(in reply to dmp_92)
 
 
Post #: 60
 
 
Page:  <<   < prev  1 2 [3] 4   next >   >>
 
  

If you found our site useful please link to us <a href="http://www.visualbasicscript.com">VisualBasicScript.com</a>.
All Forums >> [Scripting] >> WSH & Client Side VBScript >> RE: VB Script to compare with a reg key Page: <<   < prev  1 2 [3] 4   next >   >>
Jump to: