in reply to Re: VSS automation strange problem
in thread VSS automation strange problem
yields output#!/usr/bin/perl -w use strict; use Cwd; chdir('C:\Program Files (x86)\Microsoft Visual SourceSafe'); print cwd()."\n\n"; $ENV{SSDIR} = 'C:\Program Files (x86)\Microsoft Visual SourceSafe'; my $env = `echo %SSDIR%`; print "\n$env\n"; my $cmd = "ss.exe Dir \"\$/\" -Yadmin"; print "$cmd\n\n"; my $result = `$cmd`; print $result;
C:/Program Files (x86)/Microsoft Visual SourceSafe C:\Program Files (x86)\Microsoft Visual SourceSafe ss.exe Dir "$/" -Yadmin No VSS database (srcsafe.ini) found. Set the SSDIR environment variab +le to the path of srcsafe.ini for your VSS database.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: VSS automation strange problem
by Lotus1 (Vicar) on Jan 04, 2017 at 19:44 UTC | |
by cormanaz (Deacon) on Jan 06, 2017 at 00:38 UTC | |
|
Re^3: VSS automation strange problem
by Corion (Patriarch) on Jan 04, 2017 at 17:11 UTC |