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 gkittelson 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: *

  1. deltsigjoe

    Widows 7 script

    I have seemed to have found the following just as a test, but they both run and give the same XP message... any suggestions?? ' ------------------------------------------------------------------------- ' Test to check OS version '...
  2. deltsigjoe

    Widows 7 script

    can some one point me in the right direction for a script to execute under Windows 7 32bit only. I have not been able to find both. Please help.
  3. deltsigjoe

    multiple commands

    I will try, but if I run each command manually at the cmd prompt, they work just fine. the problem is when I run them combined
  4. deltsigjoe

    multiple commands

    The first one does, then it exits
  5. deltsigjoe

    multiple commands

    I am deploying this through group policy. would a batch file be better??
  6. deltsigjoe

    multiple commands

    I went ahead and reversed them (bottom on top and top on the bottom), but still only the first ran and not the second :(
  7. deltsigjoe

    multiple commands

    I just ran it and only the first cmd executes... not the second
  8. deltsigjoe

    multiple commands

    I run the following code and get an error message: Invalid command line argument. Consult the windows installer SDK for detailed command line help" here is the code ' some code SetCacheSize("C:") SET objSh = WScript.CreateObject("WScript.Shell") cmd = "MSIEXEC /i " & Chr(34) &...
  9. deltsigjoe

    multiple commands

    I will test first thing in the morning. Thank you so much.
  10. deltsigjoe

    multiple commands

    can I do something like the following: ****************************************** SOME CODE.... SetCacheSize("C:") cmd = "MSIEXEC /i " & Chr(34) & "\\utep.edu\installs\App-V\setup.msi" & Chr(34) & " INSTALLDIR=" & Chr(34) & "C:\Program Files\Softricity\SoftGrid for Windows Desktops" &...
  11. deltsigjoe

    multiple commands

    The extra part of the code I want to add is the following: msiexec /i offvirt.msi PIDKEYS=xxxx-xxxx-xxxxx-xxxx-xxxxx USEROPERATIONS=1 I am not sure if I need to create another VBScript or if I can just add this porttion either before or after the existing code.
  12. deltsigjoe

    multiple commands

    The cmd part works, but I need to create another command entry. Do I create another vbscript or can I add to the existing code to include a new command line?
  13. deltsigjoe

    multiple commands

    Hello All, I am working with a VBScript that has the following code: ****************************************** SOME CODE.... SetCacheSize("C:") cmd = "MSIEXEC /i " & Chr(34) & "\\utep.edu\installs\App-V\setup.msi" & Chr(34) & " INSTALLDIR=" & Chr(34) & "C:\Program Files\Softricity\SoftGrid...
  14. deltsigjoe

    installing softwar

    I'm kind of confused with all of the double quotes. Here is the exact line of code I have for XP that is working fine: cmd = "MSIEXEC /i " & Chr(34) & "\\petu.edu\installs\App-V\setup.msi" & Chr(34) & " INSTALLDIR=" & Chr(34) & "C:\Program Files\Softricity\SoftGrid for Windows Desktops" &...
  15. deltsigjoe

    installing softwar

    thank you so much... it seems to have done the trick, but now I come with another problem...Error Code 800A03EA Syntax ERROR When it goes to the Win7 version of the code, I get an error at the following line: (on the p character 22) cmd = "MSIEXEC /i "\\petu.edu\installs\App-V\setup.msi" any...
  16. deltsigjoe

    installing softwar

    thread329-1221834 Hello All, I am installing some software with a vbscript. I have been working on an XP machine and it works great. When I tried it on a Win7 machine, the script did not work... I modified the script to work on Win7 and it worked great, but now the script will not run on the...

Part and Inventory Search

Back
Top