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 strongm 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. 1971240z

    Linksys router dropping connection constantly

    I have been having the same problem with my linksys router. I have had it running on Comcast for about 1.5 years and have had no problem. Before that I had Optimum online and had no problems. Anyway something happened and I see that some other people have said that when there router was a...
  2. 1971240z

    ask for a login pasword and domain name VBscript

    Yes, I have tried it, but can not get that to work ether
  3. 1971240z

    ask for a login pasword and domain name VBscript

    I would like to create a script that would prompt for a login name password and domain name. Then it would take the variables and use the net use command to map a drive to a server that was specified in the script. What I have tried is the following: Option Explicit Dim name,WshShell,username...
  4. 1971240z

    need to run a command from a vb script

    I need to run a net use command from a vb script. The script will ask for a users login name as input. Then the user name will be put in to a net use command that will prompt for the users password. This is what I have written. Option Explicit Dim name, username Wscript.StdOut.WriteLine...
  5. 1971240z

    need to run a command from a vb script

    I need to run a net use command from a vb script. The script will ask for a users login name as input. Then the user name will be put in to a net use command that will prompt for the users password. This is what I have written. Option Explicit Dim name, username Wscript.StdOut.WriteLine...
  6. 1971240z

    Need to write a find and replace script

    I need to fine a string of letters and numbers like HB33440011 in a file and replace it with a new number like HC446688900. Does any one know how to right a script that would find and replace the letters/numbers? Regards,
  7. 1971240z

    How can I ufsrestore from a remote servers tape drive?

    Does any one know how to do a ufsrestore from a remote server? What I would like to do is restore a volume on server1 from a tape drive on server2. Regards,
  8. 1971240z

    Setting up dual nics on Solaris 8 and have them use separate subnet an

    jtombre, What you have is most of it. The last part is, how do you setup two gateways so you would have a gateway for hme0 and one for hme1? If you put two gateways in the defaultrouter file, it will take the first one in the file. Regards,
  9. 1971240z

    Setting up dual nics on Solaris 8 and have them use separate subnet an

    Does anyone know how to setup dual nics on Solaris? What I would like to do is have two nics running on two separate subnets and set them so that they communicate on separate gateways. Meaning if one nic is on a 192.12.234.0 with a name of test1 and a gateway of 192.12.234.1. The other nic...
  10. 1971240z

    How can I ufsdump to a remote servers tape drive?

    I would like to do a ufsdump from one solaris box to another solaris box that has a tape drive. Does anyone know how I can attach to the remote systems tape drive in order to do the dump? Regards,
  11. 1971240z

    Using ls -lR in a while loop

    I need to write a script that will take a list on login information and grep it to get the users home dir. The does a ls -lR looping through the home dirs. This is what I have written. #! /bin/ksh while read line do ls -lR `egrep "$line" locked_accounts.txt |awk -F: '{print $6}'`...
  12. 1971240z

    Running shell script to start sqlplus and run a qls script

    Hi, I am trying to write a unix shell script that starts sqlplus and then run a sql script. What I have tryed is: # # sqlplus / @ file.sql # # When I run the script it starts sqlplus, but is does not run the next line till I exit sqlplus. Can anyone help me out with this? Regards,
  13. 1971240z

    overwritting a old tape on Netbackup 4.5

    Dose anyone know how to overwrite a tape when it has old information on it? I would like to reuse my old tapes, but Netbakup tells me that there is Netbackup data on them. Regards,
  14. 1971240z

    exclusion list on unix netbackup 4.5

    How can I define a file exclusion list on my Solaris 8 and 9 clients for files that I do not wish to be backed up? Regards,
  15. 1971240z

    Does anyone know how to make a solaris boot cdrom?

    What I am looking to do is make a boot CDROM for Solaris 6, 7, or 8. This would be just like the O/S boot CDROM. You know how you can “boot cdrom –s” and boot a scaled down version of Solaris. I would like to do the same thing, but I would like to have networking and one software client...
  16. 1971240z

    solaris boot cdrom

    What I am looking to do is make a boot CDROM or Solaris 6, 7, or 8. This would be just like the O/S boot CDROM. You know how you can “boot cdrom –s” and boot a scaled down version of Solaris. I would like to do the same thing, but I would like to have networking and one software client setup...
  17. 1971240z

    how can I delete files and directories by using a source file?

    Thank You for all your help. I have it working. Thanks again
  18. 1971240z

    how can I delete files and directories by using a source file?

    What I need to do is delete all the files in a dir then delete the dir. I have a file that is sorted in reverse order. I need to read this file into a script that will look at the file line by line and determine if the line is a file or a dir. If it is a dir it will remove it with the rmdir...
  19. 1971240z

    how can I delete files and directories by using a source file?

    I need to delete files and directories by using a source file. I can not use the rm –r command to remove the files and directories. The file that I have is in reverse order. How can I use this file to delete all the files and directories? Example input file. /export/home/user1/test6...
  20. 1971240z

    I need to find all files and sub dir and file and list them to a file

    can anyone help me? I need a script that can read a file that has a list of dirs. Then list out all the files, sub dirs, and files in the sub dirs to a new file. Does anyone know how to do this? example input file /opt/netscape /opt/program1 example output file /opt/netscape...

Part and Inventory Search

Back
Top