CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: ST6UNST.EXE

  1. #1
    Join Date
    Feb 2000
    Location
    Vestfold - Norway
    Posts
    1

    ST6UNST.EXE

    I'm making a install program for the end user. The program install a
    collection of Visual basic programs.

    But i have one problem, it seems that St6unst.exe only accecpts directory
    names shorter than 8 characters.

    This statement is ok :

    c:\windows\st6unst.exe -n C:\Progra~1\Project1\ST6UNST.LOG -f -q

    But this gives an error message "Invalid command line arguments. Unable to
    continue:

    c:\windows\st6unst.exe -n C:\Program files\Project1\ST6UNST.LOG -f -q


    Does any one have any ideas ??

    Thanks

    Bjørn André






  2. #2
    Guest

    Re: ST6UNST.EXE

    try the statement from a run box, or with everything in quotes:
    "c:\windows\st6unst.exe -n C:\Program files\Project1\ST6UNST.LOG -f -q"



  3. #3
    Join Date
    May 1999
    Posts
    3,332

    Re: ST6UNST.EXE

    the path to your log file contains blanks.
    try this:
    c:\windows\st6unst.exe -n "C:\Program files\Project1\ST6UNST.LOG" -f -q



Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured