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. sjp770

    vbs as startup scipt - run exe as background process?

    Solution is as below: Option explicit dim objShell CopyAFile "\\****\ccmsetup", "c:\windows\ccmsetup", "ccmsetup.exe" ‘Format for the above cmd is CopyAFile “FQDN SOURCEPATH (no ip’s) , DESTINATION PATH, FILENAME Function CopyAFile( Byval strSourceFolder, Byval strTargetFolder, Byval...
  2. sjp770

    vbs as startup scipt - run exe as background process?

    I added DNSSUFFIX=****.*****", 0, true) in the hopes of getting it to wait and thats when it errors out. When it ends like DNSSUFFIX=****.*****") It doesn't error out, but it terminates as soon as the vbs finishes.
  3. sjp770

    vbs as startup scipt - run exe as background process?

    this is the current method, but it fails with an error about using () when called in this manner? <code> Const DestinationFile = "c:\windows\ccmsetup\ccmsetup.exe" Const SourceFile = "\\****\*****\ccmsetup\ccmsetup.exe" dim objShell Set fso = CreateObject("Scripting.FileSystemObject") Set...
  4. sjp770

    vbs as startup scipt - run exe as background process?

    I am looking for a method to call either an EXE or a bat file at startup (in a domain environment as a GPO startup script) and have it run in the background with admin rights (granted during startup script already). The problem I have is that I call ccmsetup.exe and it runs ok. If the pc is way...

Part and Inventory Search

Back
Top