Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: pnutz
  • Order by date
  1. pnutz

    Urgent: Help deployment script

    hey there, Thanks for all you suggestion.. but i have a slight problem everytime i try to run the script below the msi file would terminate halfway..which means it would just run the initialization process and it would not go through the setup process.. any idea why it happens Dim Return...
  2. pnutz

    Urgent: Help deployment script

    Hey there, Thank you ever so much for you kind help..i think its a really good deployment script reference. I was wondering if i could use the code below to subsitute for the script to install the software? Is it possible... Option Explicit On Error Resume Next Dim Return, programpath...
  3. pnutz

    Urgent: Help deployment script

    hey tsuji, Thanks for you valueble help..finally got the basic of writting a basic script for deployment purposes. Been A GREAT help :) for the script to install the software do i just specify the path of where the setup file is located?
  4. pnutz

    Urgent: Help deployment script

    Thanks it works! Currently the code goes as such... Option Explicit Dim oShell, Installed, entry, s, i set oShell = Wscript.CreateObject("Wscript.Shell") Installed = oShell.RegRead("HKEY_LOCAL_MACHINE\software\SS2\Version") on error resume next s="" for i = 0 to 7 s = s &...
  5. pnutz

    Urgent: Help deployment script

    Hey there thanks for you suggestion: What i'm trying to get from my registry is the 0.72R. Below is how my typical registry entry looks like.. Value data: 0000 30 2E 37 36 20 52 00 00 0.72R.. currently with the function below i'n getting the result of 48.. for i= 0 to Installed(19)...
  6. pnutz

    Urgent: Help deployment script

    yeah it is the first 20 bytes would result in the version number the value data i mean... how do i capture that...
  7. pnutz

    Urgent: Help deployment script

    Thanks! It works! is there a way that i can read only the 20 bytes of the registry because that is the version number
  8. pnutz

    Urgent: Help deployment script

    well i have tried that but i would get a type mismatched error i guess it because i have been reading from a REG_BINARY how do i read the values from REG_BINARY Thanks!
  9. pnutz

    Urgent: Help deployment script

    hey there, Thanks mark for the sample code, i'm new at scripting language... Anyways i do i display using WScript.echo form Reg_Binary So far i have tried out your code.. Option Explicit Dim oShell, Installed set oShell = Wscript.CreateObject("Wscript.Shell") 'Check if this fix has run...
  10. pnutz

    Urgent: Help deployment script

    Hey there, Does anyone know how to write an deployment script from vb, What i need to do is, this is in the client server environment 1)when i deploy the installation package from the active directory through the network to all of the network users i would need to check for these two things...

Part and Inventory Search

Back
Top