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 Mike Lewis 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: AkiraKenshin
  • Order by date
  1. AkiraKenshin

    SQL Server Jobs

    If you right click an application and click the security tab you can add/remove users who can perform certain actions, which you can select off underneath (read, write, delete, etc.)
  2. AkiraKenshin

    Help with a batch file

    http://windows.about.com/od/tipsarchive/l/bltip134.htm Thats for a local system, but hth
  3. AkiraKenshin

    command get directory -> moving items

    Ahhh What I ended up doing was to inform people that they would only be able to set up the automation with recursive "getting" so i used the -r function and had them type in the folder paths so text file: development/me, production/live feeds, using a comma delimiter, you can get those folders...
  4. AkiraKenshin

    Creating paths for programs

    never mind, i just had to change the path environment variable in contrl panel -> system -> advanced
  5. AkiraKenshin

    Creating paths for programs

    How can I make it so I can run a program from anywhere in the command prompt?
  6. AkiraKenshin

    Sending variables to batch programs

    Thanks, that was most helpful, but I realize now that I have to be writing a batch file within a batch file in second.bat, but i'll post that separately here
  7. AkiraKenshin

    Sending variables to batch programs

    IF i have a variable (more specifically, one inside a for loop), can I send that variable to a nested program using call so that program can use it? I'm currently trying to place files in the fight folder, because VSS only allows retrieving files into the folder that the batch file is invoking...
  8. AkiraKenshin

    .BAT -> reading a file into a variable

    longhair, thanks for the clarification however, can you explain tokens? Also, is there a way to start from a certain CHARACTER? say, get everything from third character to the delim
  9. AkiraKenshin

    command get recursive

    USing this command, is there a way to get the root project? If i'm getting all files from say $/me/personal it won't create a "me" or "personal" folder, only the subdirectories inside how can this be fixed? (i'm writing in a batch file)
  10. AkiraKenshin

    command get directory -> moving items

    I wrote a simple batch file to read off file path and names from a textfile so that it can be retrieved from the VSS online database we set up. However, as we all know, SS.exe does not place files you "get" to the working folder, but rather the folder that you invoke ss.exe get (file) from, and...
  11. AkiraKenshin

    .BAT -> reading a file into a variable

    Actually, in case any problems arise, could you explain the parameter and tokens/delim?
  12. AkiraKenshin

    Batching -> empty files

    Never mind, I figured it out, i just used FOR /F "tokens=1 delims= " %%j IN (file) DO IF NOT %%j==""
  13. AkiraKenshin

    Batching -> empty files

    Is there a way to check if a file is empty without use wscript? I wanted to make my batch file more efficient by skipping when theres no input, predetermined by the user in a text file. So something like If NOT txtfile == empty program.exe
  14. AkiraKenshin

    .BAT -> reading a file into a variable

    Thanks a lot, that really helped. I was actually reading the lines from a single file, but I just replaced the (list). thanks it worked nicely. Much easier than other nonsensical methods I found.
  15. AkiraKenshin

    VSS batching

    nm i foudn out how you set the ssdir to the database ip with the safe file is found how do i delete @_@
  16. AkiraKenshin

    VSS batching

    Not sure if this is where I should post, move if I'm wrong For VSS, I'm currently writing some program that "gets" the files currently in progress to update, but I do not know how to link to the online VSS database. The console commands seem to only work for a local database, and that is what...
  17. AkiraKenshin

    .BAT -> reading a file into a variable

    Basically, I wanted to read several files into the parameter for a program and instead of writing them all out in the FOR statement, I wanted to have them on a single line in another file in case i'll need to use them again. For example: for %%f IN (list) DO c:\program\program.exe include %%f...

Part and Inventory Search

Back
Top